]> git.localhorst.tv Git - l2e.git/commitdiff
removed battleState TODOs
authorDaniel Karbach <daniel.karbach@localhorst.tv>
Tue, 21 Aug 2012 20:28:25 +0000 (22:28 +0200)
committerDaniel Karbach <daniel.karbach@localhorst.tv>
Tue, 21 Aug 2012 20:28:25 +0000 (22:28 +0200)
this current version should do for the next few days

src/battle/BattleState.h

index 654e147d8ed60a677be4107f314dbc41783413aa..d22d6894d314bb44f98223bce046ae7edc313a76 100644 (file)
@@ -78,7 +78,6 @@ public:
        virtual void UpdateWorld(float deltaT);
        virtual void Render(SDL_Surface *);
 
-       // TODO: turn this mess into a well stuctured interface
 public:
        const Resources &Res() const { return *res; }
        AttackTypeMenu &GetAttackTypeMenu() { return attackTypeMenu; }
@@ -160,7 +159,6 @@ private:
        const Resources *res;
        AttackTypeMenu attackTypeMenu;
        MoveMenu moveMenu;
-       // TODO: combine all data about heros or monsters
        std::vector<Monster> monsters;
        std::vector<Order> attackOrder;
        Hero heroes[4];