From 6138ce080eea213682ba4c1d1c53307e7b5f858f Mon Sep 17 00:00:00 2001 From: Exil Productions Date: Tue, 11 Nov 2025 16:58:04 +0100 Subject: [PATCH] Add Modinfo Class --- ModInfo.cs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 ModInfo.cs diff --git a/ModInfo.cs b/ModInfo.cs new file mode 100644 index 0000000..408f317 --- /dev/null +++ b/ModInfo.cs @@ -0,0 +1,14 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace VMM +{ + internal class ModInfo + { + public const string Name = "VigilModManager"; + public const string Version = "1.0.0"; + public const string Author = "Exil_S"; + public const string DownloadLink = ""; + } +}