Initial commit
This commit is contained in:
commit
fce29361f6
35 changed files with 59905 additions and 0 deletions
11
include/display/game_window.hpp
Normal file
11
include/display/game_window.hpp
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
#include "display/base_window.hpp"
|
||||
|
||||
class GameWindow : public BaseWindow {
|
||||
public:
|
||||
GameWindow(int width, int height, std::string title) : BaseWindow(width, height, title) {};
|
||||
void Initialize();
|
||||
void LoadContent();
|
||||
void Update();
|
||||
void Render();
|
||||
void Unload();
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue