mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-26 18:35:34 +00:00
14 lines
215 B
C#
14 lines
215 B
C#
using HarmonyLib;
|
|
|
|
namespace QSB.Patches
|
|
{
|
|
public abstract class QSBPatch
|
|
{
|
|
public abstract QSBPatchTypes Type { get; }
|
|
|
|
public void DoPatches(Harmony instance)
|
|
{
|
|
instance.PatchAll(GetType());
|
|
}
|
|
}
|
|
} |