GameBundle/Test/GameImpl.cs
2020-04-09 18:06:01 +02:00

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;
}
}
}