X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fbattle%2FAttackChoice.h;h=0049f1e2be198bd068713be96d26be3ddf124646;hb=ab063a95735fdb90e7c610015e9155283ba5eca6;hp=8577976ce708d6eeb16a13fe752e6998af54df9c;hpb=cc3d698b8c1ad09d7a3f9e3f28bc84e0ac1735ea;p=l2e.git diff --git a/src/battle/AttackChoice.h b/src/battle/AttackChoice.h index 8577976..0049f1e 100644 --- a/src/battle/AttackChoice.h +++ b/src/battle/AttackChoice.h @@ -1,8 +1,15 @@ #ifndef BATTLE_ATTACKCHOICE_H_ #define BATTLE_ATTACKCHOICE_H_ +namespace battle { + class Battle; +} +namespace common { + class Item; + class Spell; +} + #include "TargetSelection.h" -#include "../common/fwd.h" namespace battle { @@ -19,7 +26,10 @@ public: }; public: - explicit AttackChoice(BattleState *b = 0) : thing(0), selection(b), type(UNDECIDED) { } + AttackChoice() + : thing(0), selection(), type(UNDECIDED) { } + explicit AttackChoice(Battle *b) + : thing(0), selection(b), type(UNDECIDED) { } ~AttackChoice() { } public: @@ -43,4 +53,4 @@ private: } -#endif /* BATTLE_ATTACKCHOICE_H_ */ +#endif