From db00f7a7f13f0d35c7f2c02d35a919bd1c6ac701 Mon Sep 17 00:00:00 2001 From: Dilon Sjamsuddin <130769530+wasdeilonn@users.noreply.github.com> Date: Thu, 23 Oct 2025 20:58:07 +0200 Subject: [PATCH] added shit --- Main.cs | 6 +++++- manifest.json | 9 +++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 manifest.json 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