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