NasNas
An intuitive and beginner friendly 2D game framework for C++
AppState.hpp
1 // Created by Modar Nasser on 05/09/2021.
2 
3 #pragma once
4 
5 #include <SFML/Window/Event.hpp>
6 
7 namespace ns {
9  virtual void onEvent(const sf::Event&) {}
10  virtual void update() {}
11  virtual void preRender() {}
12  };
13 
15  virtual ~AppState() = default;
16  virtual void setup() {};
17  };
18 }