diff options
Diffstat (limited to 'includes/Global.h')
| -rw-r--r-- | includes/Global.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/includes/Global.h b/includes/Global.h new file mode 100644 index 0000000..8e94255 --- /dev/null +++ b/includes/Global.h @@ -0,0 +1,14 @@ +#ifndef GAMESESSION_H +#define GAMESESSION_H + +#include "Singleton.h" +#include "Graphics.h" + +class Global : public Singleton<Global> +{ +public: + Graphics * g; + Global(); +}; + +#endif // GAMESESSION_H |
