- Timestamp:
- May 10, 2010, 4:32:26 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/ai/src/orxonox/controllers/ArtificialController.h
r6850 r6888 32 32 #include "OrxonoxPrereqs.h" 33 33 34 #include <vector> 35 34 36 #include "util/Math.h" 35 37 #include "Controller.h" … … 43 45 virtual ~ArtificialController(); 44 46 45 virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode); //new47 virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode); 46 48 47 49 void abandonTarget(Pawn* target); … … 60 62 enum State {SLAVE, MASTER, FREE}; 61 63 State state_; 62 std:: list<ArtificialController*> slaves_;64 std::vector<ArtificialController*> slaves_; 63 65 64 66 void targetDied(); 65 67 66 68 void moveToPosition(const Vector3& target); 67 //void speedToTargetPosition(const Vector3& target);68 69 void moveToTargetPosition(); 69 70
Note: See TracChangeset
for help on using the changeset viewer.