X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fbattle%2Fstates%2FPerformAttacks.h;h=a4d58dcc64f47ada4dd39f3a6bd0c53c67108cf0;hb=8456b7dac2051bfd2b507a39854c1428eb4d91cd;hp=a5f3247b404a7fd2bf64fd0dd495453c18843d7d;hpb=e52f2d15302057cbcc4a2dcca1ae9b25dc12dbcd;p=l2e.git diff --git a/src/battle/states/PerformAttacks.h b/src/battle/states/PerformAttacks.h index a5f3247..a4d58dc 100644 --- a/src/battle/states/PerformAttacks.h +++ b/src/battle/states/PerformAttacks.h @@ -19,12 +19,14 @@ namespace battle { +class AttackAnimation; + class PerformAttacks : public app::State { public: explicit PerformAttacks(BattleState *battle) - : ctrl(0), battle(battle), moveAnimation(0), titleBarText(0), cursor(-1) { } + : ctrl(0), battle(battle), moveAnimation(0), attackAnimation(0), titleBarText(0), cursor(-1) { } public: virtual void EnterState(app::Application &ctrl, SDL_Surface *screen); @@ -53,6 +55,7 @@ private: app::Application *ctrl; BattleState *battle; graphics::Animation *moveAnimation; + AttackAnimation *attackAnimation; const char *titleBarText; app::Timer titleBarTimer; std::vector order;