This commit is contained in:
p.tychinin
2024-04-06 14:27:54 +03:00
parent 2c6d3fe629
commit 83d3e2f6c5
16 changed files with 481 additions and 2 deletions

View File

@@ -0,0 +1,17 @@
using HarmonyLib;
using System.Reflection;
using Verse;
using RimWorld;
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());
}
}
}