Changeset 10062 in orxonox.OLD for branches/ai
- Timestamp:
- Dec 13, 2006, 1:39:44 PM (18 years ago)
- Location:
- branches/ai/src/ai
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ai/src/ai/ai_module.h
r10061 r10062 9 9 AIModule(); 10 10 virtual ~AIModule() {} 11 virtual void process() ;11 virtual void process() {} 12 12 void setDifficulty(int newDifficulty); 13 13 void setOwner(AITeamMember* newOwner); -
branches/ai/src/ai/shooting_module.h
r10061 r10062 8 8 public: 9 9 ShootingModule(); 10 ~ShootingModule();11 v oid process();10 virtual ~ShootingModule(); 11 virtual void process(); 12 12 private: 13 13 };
Note: See TracChangeset
for help on using the changeset viewer.