Changeset 10040 in orxonox.OLD for branches/ai/src/story_entities
- Timestamp:
- Dec 11, 2006, 8:30:22 PM (18 years ago)
- Location:
- branches/ai/src/story_entities
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ai/src/story_entities/game_world.cc
r9869 r10040 54 54 #include "ogg_player.h" 55 55 #include "shader.h" 56 #include "ai_engine.h" 56 57 57 58 #include "animation_player.h" … … 325 326 /* collision reaction */ 326 327 this->collisionReaction (); 328 329 /* perform ai check*/ 330 this->checkAI(); 327 331 328 332 /* check the game rules */ … … 498 502 499 503 504 505 void GameWorld::checkAI() 506 { 507 AIEngine::getInstance()->process(); 508 } 509 510 500 511 /** 501 512 * check the game rules: winning conditions, etc. -
branches/ai/src/story_entities/game_world.h
r9869 r10040 73 73 virtual void tick(); 74 74 virtual void update(); 75 virtual void checkAI(); 75 76 virtual void checkGameRules(); 76 77 virtual void collisionDetection();
Note: See TracChangeset
for help on using the changeset viewer.