diff options
| author | Simon 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) |
| commit | 2511afec8bfaa0582928406b37e8b579fa267e4f (patch) | |
| tree | aae1674f5f076db275ec1c6b32271a69cff1489a /includes/Global.h | |
| parent | 2c9295007a287dc01ff63fcf7b3da141f7474e37 (diff) | |
| download | powder-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.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 |
