]> git.localhorst.tv Git - blank.git/blobdiff - src/app/ProgressState.hpp
moved common stated to shared dir
[blank.git] / src / app / ProgressState.hpp
diff --git a/src/app/ProgressState.hpp b/src/app/ProgressState.hpp
deleted file mode 100644 (file)
index b3295c2..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-#ifndef BLANK_APP_PROGRESSSTATE_HPP_
-#define BLANK_APP_PROGRESSSTATE_HPP_
-
-#include "State.hpp"
-
-#include "../ui/Progress.hpp"
-
-
-namespace blank {
-
-class Environment;
-
-class ProgressState
-: public State {
-
-public:
-       ProgressState(Environment &env, const char *tpl);
-
-       void SetProgress(int value, int total);
-
-       void Handle(const SDL_Event &) override;
-       void Render(Viewport &) override;
-
-private:
-       Environment &env;
-       Progress progress;
-
-};
-
-}
-
-#endif