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

10 lines
200 B
C#
Raw Normal View History

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