GameBundle/Test/GameImpl.cs

13 lines
216 B
C#
Raw Normal View History

2020-04-09 18:06:01 +02:00
using MLEM.Startup;
namespace Test {
public class GameImpl : MlemGame {
public static GameImpl Instance { get; private set; }
public GameImpl() {
Instance = this;
}
}
}