Modding:C Sharp Scripting: Difference between revisions

Jump to navigation Jump to search
add modding info box
mNo edit summary
(add modding info box)
Line 1: Line 1:
[[Category:Modding]]
[[Category:Modding]]{{Modding Info}}
==Overview==
==Overview==
Caves of Qud loads a majority of it's content via reflection. You may add new files to it's database of reflectable objects by including .cs files in your mod. These files are compiled at runtime into an assembly and the type resolver will first check for types in the mod assembly before checking the Caves of Qud game assembly, thus you may add new types or override existing types by including classes with the right naming convention in your mod.
Caves of Qud loads a majority of it's content via reflection. You may add new files to it's database of reflectable objects by including .cs files in your mod. These files are compiled at runtime into an assembly and the type resolver will first check for types in the mod assembly before checking the Caves of Qud game assembly, thus you may add new types or override existing types by including classes with the right naming convention in your mod.

Navigation menu