mirror of
https://github.com/Ellpeck/GameBundle.git
synced 2024-11-05 09:49:09 +01:00
13 lines
216 B
C#
13 lines
216 B
C#
|
using MLEM.Startup;
|
||
|
|
||
|
namespace Test {
|
||
|
public class GameImpl : MlemGame {
|
||
|
|
||
|
public static GameImpl Instance { get; private set; }
|
||
|
|
||
|
public GameImpl() {
|
||
|
Instance = this;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|