Changeset 10061 in orxonox.OLD for branches/ai/src
- Timestamp:
- Dec 13, 2006, 1:30:30 PM (18 years ago)
- Location:
- branches/ai/src/ai
- Files:
-
- 2 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ai/src/ai/ai_module.cc
r10045 r10061 18 18 19 19 #include "ai_module.h" 20 #include "ai_engine.h"21 #include "debug.h"20 //#include "ai_engine.h" 21 //#include "debug.h" 22 22 23 23 … … 26 26 { 27 27 } 28 29 30 AIModule::~AIModule()31 {32 }33 34 35 36 void AIModule::process()37 {38 std::cout << "Processing Module...\n";39 }40 41 28 42 29 -
branches/ai/src/ai/ai_module.h
r10045 r10061 8 8 public: 9 9 AIModule(); 10 ~AIModule();11 v oid process();10 virtual ~AIModule() {} 11 virtual void process(); 12 12 void setDifficulty(int newDifficulty); 13 13 void setOwner(AITeamMember* newOwner); 14 pr ivate:14 protected: 15 15 int difficulty; 16 16 AITeamMember* owner; -
branches/ai/src/ai/shooting_module.h
r10029 r10061 8 8 public: 9 9 ShootingModule(); 10 virtual~ShootingModule();11 v irtual void process();10 ~ShootingModule(); 11 void process(); 12 12 private: 13 13 };
Note: See TracChangeset
for help on using the changeset viewer.