summaryrefslogtreecommitdiff
path: root/includes/Global.h
diff options
context:
space:
mode:
authorSimon Robertshaw <simon@hardwired.org.uk>2012-01-15 19:35:40 (GMT)
committer Simon Robertshaw <simon@hardwired.org.uk>2012-01-15 19:35:40 (GMT)
commit2511afec8bfaa0582928406b37e8b579fa267e4f (patch)
treeaae1674f5f076db275ec1c6b32271a69cff1489a /includes/Global.h
parent2c9295007a287dc01ff63fcf7b3da141f7474e37 (diff)
downloadpowder-2511afec8bfaa0582928406b37e8b579fa267e4f.zip
powder-2511afec8bfaa0582928406b37e8b579fa267e4f.tar.gz
More stuff, better events and starting on interface
Diffstat (limited to 'includes/Global.h')
-rw-r--r--includes/Global.h14
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