This commit is contained in:
CGFighter
2021-07-20 05:10:38 +03:00
commit 355844980a
12 changed files with 333 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
using HarmonyLib;
using System.Reflection;
using Verse;
namespace ResearchWhatever
{
[StaticConstructorOnStartup]
public class ResearchWhatever : Mod
{
public ResearchWhatever(ModContentPack content) : base(content)
{
var harmony = new Harmony("net.avilmask.rimworld.mod.ResearchWhatever");
harmony.PatchAll(Assembly.GetExecutingAssembly());
}
}
}