1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-05-15 13:48:46 +02:00
MLEM/MLEM.Templates/content/MLEM.Templates.DesktopGL/GameImpl.cs

13 lines
204 B
C#
Raw Normal View History

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