From 98e37c0ee253a06fb8c882559c3ad5c29b8bba5e Mon Sep 17 00:00:00 2001 From: stian853 Date: Thu, 9 Nov 2023 16:19:54 +0100 Subject: [PATCH] added Game_state.h --- src/Game_state.h | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) 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 -- 2.30.2