From 6b99c7aee539e35b8e67520f36adeca9007641cb Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Tue, 17 Feb 2015 13:28:50 -0500 Subject: Refactored map loader and added a second map Also tweaked the font for apostrophe, p, and q --- src/state.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/state.h (limited to 'src/state.h') diff --git a/src/state.h b/src/state.h new file mode 100644 index 0000000..e7962ec --- /dev/null +++ b/src/state.h @@ -0,0 +1,13 @@ +#ifndef STATE_H +#define STATE_H + +#include "renderer.h" + +class State { +public: + virtual void input(int key, int action) = 0; + virtual void tick() = 0; + virtual void render(Texture* tex) = 0; +}; + +#endif -- cgit 1.4.1