hydrangea/include/game.h

24 lines
271 B
C++

#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