Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Oct 26, 2015, 5:44:31 PM (9 years ago)
Author:
gania
Message:

Restructured

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/AI_HS15/src/orxonox/controllers/WingmanController.h

    r10681 r10709  
    3131
    3232
    33 #include "LeaderController.h"
     33#include "controllers/Controller.h"
     34
     35
     36#include "OrxonoxPrereqs.h"
     37#include "core/class/Super.h"
     38#include "core/CoreIncludes.h"
     39#include "core/XMLPort.h"
     40#include "core/command/ConsoleCommandIncludes.h"
     41#include "core/command/Executor.h"
     42
     43#include <vector>
     44#include "util/Math.h"
     45#include <climits>
     46
     47#include "tools/Timer.h"
     48#include "tools/interfaces/Tickable.h"
     49
     50#include "worldentities/ControllableEntity.h"
     51#include "worldentities/pawns/SpaceShip.h"
     52#include "worldentities/pawns/Pawn.h"
     53#include "worldentities/pawns/TeamBaseMatchBase.h"
     54
     55#include "gametypes/TeamDeathmatch.h"
     56#include "gametypes/Dynamicmatch.h"
     57#include "gametypes/Mission.h"
     58#include "gametypes/Gametype.h"
     59
    3460
    3561
    3662namespace orxonox
    3763{
    38     class _OrxonoxExport WingmanController : public LeaderController
     64    class _OrxonoxExport WingmanController : public Controller, public Tickable
    3965    {
    4066        public:
     
    5177                     
    5278        private:
    53             static const float ACTION_INTERVAL;
     79            //const float ACTION_INTERVAL;
     80           
     81            WeakPtr<Pawn> target_;
     82           
     83            //LeaderController* leader_;
    5484
    55             Timer actionTimer_; //<! Regularly calls action().
     85            //Timer actionTimer_; //<! Regularly calls action().
    5686           
    5787    };
Note: See TracChangeset for help on using the changeset viewer.