The-Powder-Toy/includes/Global.h
2012-01-15 19:35:40 +00:00

15 lines
195 B
C++

#ifndef GAMESESSION_H
#define GAMESESSION_H
#include "Singleton.h"
#include "Graphics.h"
class Global : public Singleton<Global>
{
public:
Graphics * g;
Global();
};
#endif // GAMESESSION_H