mirror of
https://gitgud.io/c0ffeeeeeeee/rjw-events.git
synced 2024-08-14 23:57:42 +00:00
22 lines
451 B
C#
22 lines
451 B
C#
|
using HarmonyLib;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Reflection;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using Verse;
|
|||
|
|
|||
|
namespace RJW_Events
|
|||
|
{
|
|||
|
[StaticConstructorOnStartup]
|
|||
|
class Harmony_PatchAll
|
|||
|
{
|
|||
|
static Harmony_PatchAll()
|
|||
|
{
|
|||
|
Harmony harmony = new Harmony("rimworldevents");
|
|||
|
harmony.PatchAll(Assembly.GetExecutingAssembly());
|
|||
|
}
|
|||
|
}
|
|||
|
}
|