mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-22 04:53:29 +01:00
added instances to templates
This commit is contained in:
parent
1bb2f6ddc3
commit
052b83bbf5
3 changed files with 18 additions and 0 deletions
|
@ -3,5 +3,11 @@ using MLEM.Startup;
|
|||
namespace TemplateNamespace {
|
||||
public class GameImpl : MlemGame {
|
||||
|
||||
public static GameImpl Instance { get; private set; }
|
||||
|
||||
public GameImpl() {
|
||||
Instance = this;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
|
@ -3,5 +3,11 @@ using MLEM.Startup;
|
|||
namespace TemplateNamespace {
|
||||
public class GameImpl : MlemGame {
|
||||
|
||||
public static GameImpl Instance { get; private set; }
|
||||
|
||||
public GameImpl() {
|
||||
Instance = this;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
|
@ -3,5 +3,11 @@ using MLEM.Startup;
|
|||
namespace TemplateNamespace {
|
||||
public class GameImpl : MlemGame {
|
||||
|
||||
public static GameImpl Instance { get; private set; }
|
||||
|
||||
public GameImpl() {
|
||||
Instance = this;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue