2020-02-24 17:34:05 +01:00
|
|
|
using MLEM.Startup;
|
|
|
|
|
|
|
|
namespace TemplateNamespace {
|
|
|
|
public class GameImpl : MlemGame {
|
|
|
|
|
2020-02-26 13:24:42 +01:00
|
|
|
public static GameImpl Instance { get; private set; }
|
|
|
|
|
|
|
|
public GameImpl() {
|
|
|
|
Instance = this;
|
|
|
|
}
|
|
|
|
|
2020-02-24 17:34:05 +01:00
|
|
|
}
|
|
|
|
}
|