Singleton Design Pattern

This commit is contained in:
rillk500 2020-10-16 21:56:05 +06:00
parent 258291df5c
commit 9036f20b5f
3 changed files with 7 additions and 0 deletions

View File

@ -13,6 +13,7 @@ void main() {
// process events
// update
// calling the dummy function
GStateManager.getInstance().hello_world();
// render

View File

@ -1,7 +1,9 @@
module data;
// mostly used libraries
public import raylib;
public import std.stdio: writeln, write;
// window dimensions
immutable windowWidth = 720;
immutable windowHeight = 640;

View File

@ -1,10 +1,13 @@
import data;
class GStateManager {
// private class instance
private static GStateManager instance;
// private constructor
private this() { }
// return the instance; create the instance, if it wasn't created yet
static GStateManager getInstance() {
if(instance is null) {
instance = new GStateManager();
@ -13,6 +16,7 @@ class GStateManager {
return instance;
}
// dummy function for testing purposes
void hello_world() {
writeln("Hello World!");
}