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 // process events
// update // update
// calling the dummy function
GStateManager.getInstance().hello_world(); GStateManager.getInstance().hello_world();
// render // render

View File

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

View File

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