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