X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fapp%2FMessageState.hpp;fp=src%2Fapp%2FMessageState.hpp;h=0000000000000000000000000000000000000000;hb=69e4d6c0a86a27f9b3f1297e46c55b36059a24b9;hp=29c8cb68f317dea46fd0079f4d816a01377c6100;hpb=916cba3b7b9dea6459febb90d24565cf4c0a8b2a;p=blank.git diff --git a/src/app/MessageState.hpp b/src/app/MessageState.hpp deleted file mode 100644 index 29c8cb6..0000000 --- a/src/app/MessageState.hpp +++ /dev/null @@ -1,35 +0,0 @@ -#ifndef BLANK_APP_MESSAGESTATE_HPP_ -#define BLANK_APP_MESSAGESTATE_HPP_ - -#include "State.hpp" - -#include "../ui/FixedText.hpp" - - -namespace blank { - -class Environment; - -class MessageState -: public State { - -public: - explicit MessageState(Environment &); - - void SetMessage(const char *); - void ClearMessage(); - - void Handle(const SDL_Event &) override; - void Update(int dt) override; - void Render(Viewport &) override; - -private: - Environment &env; - FixedText message; - FixedText press_key; - -}; - -} - -#endif