MCPcopy Create free account
hub / github.com/RussellJerome/UnrealModLoader / ExampleMod

Method ExampleMod

ExampleMod/ExampleMod.h:9–20  ·  view source on GitHub ↗

Basic Mod Info

Source from the content-addressed store, hash-verified

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;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected