X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fbattle%2FAttackChoice.h;h=0049f1e2be198bd068713be96d26be3ddf124646;hb=8f4e771181491f1d83ce0c907b8dda0fbbe0ce93;hp=8cba2353a164bccfd155672dd9c9fc5df291aa0c;hpb=c1443f347c55be69ad35d332ecb9f21dd85d965e;p=l2e.git diff --git a/src/battle/AttackChoice.h b/src/battle/AttackChoice.h index 8cba235..0049f1e 100644 --- a/src/battle/AttackChoice.h +++ b/src/battle/AttackChoice.h @@ -1,21 +1,16 @@ -/* - * AttackChoice.h - * - * Created on: Aug 7, 2012 - * Author: holy - */ - #ifndef BATTLE_ATTACKCHOICE_H_ #define BATTLE_ATTACKCHOICE_H_ -#include "TargetSelection.h" - +namespace battle { + class Battle; +} namespace common { - class Ikari; class Item; class Spell; } +#include "TargetSelection.h" + namespace battle { class AttackChoice { @@ -31,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: @@ -55,4 +53,4 @@ private: } -#endif /* BATTLE_ATTACKCHOICE_H_ */ +#endif