mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-04 02:47:22 +00:00
10 lines
163 B
C#
10 lines
163 B
C#
namespace QSB
|
|
{
|
|
public abstract class QSBPatch
|
|
{
|
|
public abstract QSBPatchTypes Type { get; }
|
|
|
|
public abstract void DoPatches();
|
|
}
|
|
}
|