From: stian853 Date: Thu, 9 Nov 2023 15:19:54 +0000 (+0100) Subject: added Game_state.h X-Git-Url: https://gitweb.forssennils.se/?a=commitdiff_plain;h=98e37c0ee253a06fb8c882559c3ad5c29b8bba5e;p=TDDC76_proj.git added Game_state.h --- diff --git a/src/Game_state.h b/src/Game_state.h index e69de29..3bdfc8f 100644 --- a/src/Game_state.h +++ b/src/Game_state.h @@ -0,0 +1,21 @@ +#ifndef GAME_STATE_H +#define GAME_STATE_H + +#include + +#include "State.h" + +class Game_state : public State +{ + public: + void update() override; + void render(sf::RenderWindow& window) override; + void handle_input(); + + protected: + + private: + +}; + +#endif \ No newline at end of file