Skip to content

Mod Helper

ModHelper is a field provided on your ModBehavior that exposes several APIs from OWML for modifying many base-game behaviors. Generally, look to see if ModHelper can assist you with implementing a mod feature before implementing it yourself.

public class MyCoolMod : ModBehaviour {
    public void Start() {
        // ModHelper is available inside your ModBehaviour
        ModHelper.Console.WriteLine("Hello!");
    }
}