mirror of
https://github.com/Xevion/RimWorld_ResearchWhatever.git
synced 2025-12-06 07:16:11 -06:00
17 lines
432 B
C#
17 lines
432 B
C#
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());
|
|
}
|
|
}
|
|
}
|