Initial Code

This commit is contained in:
Exil Productions
2025-11-11 03:10:52 +01:00
commit 74e53205f4
21 changed files with 2039 additions and 0 deletions

18
ModRegistry/ModEntry.cs Normal file
View File

@@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Reflection;
using System.Text;
using VMM.ModRegistry.Settings;
namespace VMM.ModRegistry
{
public class ModEntry
{
public string Name { get; set; }
public string Version { get; set; }
public string Author { get; set; }
public ModSettings Settings { get; set; }
internal Assembly assembly { get; set; }
}
}