Add Modinfo Class

This commit is contained in:
Exil Productions
2025-11-11 16:58:04 +01:00
parent 3dc01ae378
commit 6138ce080e

14
ModInfo.cs Normal file
View File

@@ -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 = "";
}
}