diff --git a/Main.cs b/Main.cs index 5e6180f..280ce06 100644 --- a/Main.cs +++ b/Main.cs @@ -1,10 +1,14 @@ using BepInEx.Logging; +using HarmonyLib; namespace PolyScriptTemplate; public static class Main { + public static ManualLogSource? modLogger; public static void Load(ManualLogSource logger) { - logger.LogMessage("Here we go!"); + modLogger = logger; + modLogger.LogMessage("Here we go!"); + Harmony.CreateAndPatchAll(typeof(Main)); } } diff --git a/manifest.json b/manifest.json new file mode 100644 index 0000000..3d64154 --- /dev/null +++ b/manifest.json @@ -0,0 +1,9 @@ +{ + "id": "polyscripttemplate", + "name": "PolyScript Template", + "version": "1.0", + "authors": [ + "Johnathan G. 'johnKlipi' Klipper" + ], + "description": "A template mod for polyscripts" +} \ No newline at end of file