1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-04-28 23:29:06 +02:00
MLEM/MLEM.Templates/content/MLEM.Templates.DesktopGL/GameImpl.cs
2022-04-30 13:14:44 +02:00

13 lines
204 B
C#

using MLEM.Startup;
namespace TemplateNamespace;
public class GameImpl : MlemGame {
public static GameImpl Instance { get; private set; }
public GameImpl() {
Instance = this;
}
}