X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fapp%2FState.h;fp=src%2Fapp%2FState.h;h=7f46c5746c580ddc1ea089acab018d2f3b1f5926;hb=867fd5d9b79c3b9c1d0fb17ba9f55cfe971b93d5;hp=efee32ba2ab0f3a3001dbbe9944ab9d8f44a58c3;hpb=2955f56fb11fab871a34db5700befe55737d81d7;p=l2e.git diff --git a/src/app/State.h b/src/app/State.h index efee32b..7f46c57 100644 --- a/src/app/State.h +++ b/src/app/State.h @@ -13,6 +13,7 @@ namespace app { class Application; +class Input; class State { @@ -28,7 +29,7 @@ public: /// adapt the state's graphics to given dimensions virtual void Resize(int width, int height) = 0; - virtual void HandleEvent(const SDL_Event &) = 0; + virtual void HandleInput(const Input &) = 0; virtual void UpdateWorld(float deltaT) = 0; virtual void Render(SDL_Surface *) = 0;