Difference between revisions of "Modding Tutorials/Harmony"
Jump to navigation
Jump to search
(Created page with " [http://rimworldwiki.com/index.php?title=Modding_Tutorials/Injection&action=edit&redlink=1]") |
|||
Line 1: | Line 1: | ||
+ | [http://rimworldwiki.com/index.php?title=Modding_Tutorials/Injection&action=edit&redlink=1 Harmony] - A library for patching, replacing and decorating .NET and Mono methods during runtime | ||
+ | Harmony is the current best practice for changing the runtime execution of code in RimWorld. The best method of incorporating it in your Mod is to depend on the HugsLib Mod. | ||
− | [ | + | |
+ | = Links = | ||
+ | |||
+ | [https://github.com/roxxploxx/RimWorldModGuide/wiki/SHORTTUTORIAL%3A-Harmony RimWorldModGuide on Harmony] | ||
+ | |||
+ | [https://github.com/pardeike/Harmony/wiki Harmony's Wiki] | ||
+ | |||
+ | [https://github.com/UnlimitedHugs/RimworldHugsLib HugsLib] |
Revision as of 14:47, 1 June 2017
Harmony - A library for patching, replacing and decorating .NET and Mono methods during runtime
Harmony is the current best practice for changing the runtime execution of code in RimWorld. The best method of incorporating it in your Mod is to depend on the HugsLib Mod.