#include "scene.h" #include "window.h" #ifndef GAME_H #define GAME_H class Game { private: public: // Constructor and Destructor Game(); ~Game(); // Methods int Init(); // Members static Scene *scene; Window *window = NULL; }; #endif