10 lines
142 B
C#
Raw Normal View History

2020-11-03 21:21:02 +00:00
namespace QSB
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; }
2020-11-03 21:11:10 +00:00
2020-12-02 21:23:01 +00:00
public abstract void DoPatches();
}
2020-11-03 21:11:10 +00:00
}