Created
August 27, 2014 01:34
-
-
Save Lumaio/48b20ee88f76bab57d99 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "inc.hh" | |
#ifndef BASE_H | |
#define BASE_H | |
class BaseState | |
{ | |
private: | |
public: | |
BaseState(); | |
~BaseState()=default; | |
virtual void init(thor::ActionMap<std::string> &map); | |
virtual void update(float dt, thor::ActionMap<std::string> &map); | |
virtual void render(sf::RenderWindow &window); | |
}; | |
#endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment