]> git.localhorst.tv Git - l2e.git/blobdiff - src/battle/states/VictoryState.h
animated victory messages
[l2e.git] / src / battle / states / VictoryState.h
index d14ec76e9a9c69467862558bb99aaf9f646d5c04..4dca6e9663373dbc1d275647aff813b04dd6ecbb 100644 (file)
@@ -23,7 +23,8 @@ public:
                        BattleState *parent)
        : battle(battle)
        , parent(parent)
-       , cursor(0) { }
+       , cursor(0)
+       , stalling(false) { }
 
 public:
        virtual void HandleEvents(const app::Input &);
@@ -52,6 +53,7 @@ private:
        math::Vector<int> frameSize;
        math::Vector<int> textPosition;
        int cursor;
+       bool stalling;
 
 };