Basic Mod Info
| 7 | |
| 8 | //Basic Mod Info |
| 9 | ExampleMod() |
| 10 | { |
| 11 | ModName = "ExampleMod"; // Mod Name -- If Using BP ModActor, Should Be The Same Name As Your Pak |
| 12 | ModVersion = "1.0.0"; // Mod Version |
| 13 | ModDescription = "HAHAHAHA MOD GO BURR"; // Mod Description |
| 14 | ModAuthors = "RussellJ"; // Mod Author |
| 15 | ModLoaderVersion = "2.2.1"; |
| 16 | |
| 17 | // Dont Touch The Internal Stuff |
| 18 | ModRef = this; |
| 19 | CompleteModCreation(); |
| 20 | } |
| 21 | |
| 22 | //Called When Internal Mod Setup is finished |
| 23 | virtual void InitializeMod() override; |
nothing calls this directly
no outgoing calls
no test coverage detected