- Timestamp:
- Aug 31, 2010, 3:37:40 AM (15 years ago)
- Location:
- code/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk
- Property svn:mergeinfo changed
-
code/trunk/src/orxonox/controllers/ArtificialController.cc
r7184 r7284 33 33 34 34 #include "util/Math.h" 35 #include "core/ConsoleCommand.h"36 35 #include "core/CoreIncludes.h" 37 36 #include "core/XMLPort.h" 37 #include "core/command/ConsoleCommand.h" 38 38 #include "worldentities/ControllableEntity.h" 39 39 #include "worldentities/pawns/Pawn.h" … … 47 47 namespace orxonox 48 48 { 49 SetConsoleCommand( ArtificialController, formationflight, true);50 SetConsoleCommand( ArtificialController, masteraction, true);51 SetConsoleCommand( ArtificialController, followme, true);52 SetConsoleCommand( ArtificialController, passivebehaviour, true);53 SetConsoleCommand( ArtificialController, formationsize, true);49 SetConsoleCommand("ArtificialController", "formationflight", &ArtificialController::formationflight); 50 SetConsoleCommand("ArtificialController", "masteraction", &ArtificialController::masteraction); 51 SetConsoleCommand("ArtificialController", "followme", &ArtificialController::followme); 52 SetConsoleCommand("ArtificialController", "passivebehaviour", &ArtificialController::passivebehaviour); 53 SetConsoleCommand("ArtificialController", "formationsize", &ArtificialController::formationsize); 54 54 55 55 static const unsigned int STANDARD_MAX_FORMATION_SIZE = 7;
Note: See TracChangeset
for help on using the changeset viewer.