Add Project

This commit is contained in:
Allen Wolf
2024-01-09 20:48:30 -06:00
parent 95afd185f2
commit 88907760b5
27 changed files with 3707 additions and 0 deletions

23
src/ModData.cs Executable file
View File

@ -0,0 +1,23 @@
using System;
using System.Collections.Generic;
using System.Reflection;
using System.Text;
namespace MacroBoard
{
public class ModData
{
public static List<ModData> ModDataList = new List<ModData>();
//Type is kinda unnecessary as you can get the type through other methods, but this makes it easier
public ModData(Assembly asm, Type type, dynamic mod)
{
Assembly = asm;
Type = type;
Mod = mod;
}
public Assembly Assembly;
public Type Type;
public dynamic Mod;
}
}