quantum-space-buddies/QSB/Patches/QSBPatch.cs

11 lines
207 B
C#
Raw Normal View History

using HarmonyLib;
2021-06-18 20:54:32 +00:00
namespace QSB.Patches
2020-11-03 21:11:10 +00:00
{
2020-12-02 21:23:01 +00:00
public abstract class QSBPatch
{
public abstract QSBPatchTypes Type { get; }
2021-06-18 20:54:32 +00:00
2021-10-29 22:00:13 +00:00
public void DoPatches(Harmony instance) => instance.PatchAll(GetType());
2020-12-02 21:23:01 +00:00
}
2020-12-03 08:28:05 +00:00
}