Changeset 10376 in orxonox.OLD for trunk/src/story_entities
- Timestamp:
- Jan 26, 2007, 12:17:26 AM (18 years ago)
- Location:
- trunk/src/story_entities
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/story_entities/game_world.cc
r10368 r10376 55 55 #include "ogg_player.h" 56 56 #include "shader.h" 57 #include "ai_engine.h" 57 58 58 59 #include "animation_player.h" … … 337 338 this->collisionReaction (); 338 339 340 /* perform ai check*/ 341 this->checkAI(); 342 339 343 /* check the game rules */ 340 344 this->checkGameRules(); … … 511 515 512 516 517 518 void GameWorld::checkAI() 519 { 520 AIEngine::getInstance()->tick(this->dtS); 521 //AIEngine::getInstance()->tick(); 522 } 523 524 513 525 /** 514 526 * check the game rules: winning conditions, etc. -
trunk/src/story_entities/game_world.h
r10314 r10376 74 74 virtual void tick(); 75 75 virtual void update(); 76 virtual void checkAI(); 76 77 virtual void checkGameRules(); 77 78 virtual void collisionDetection();
Note: See TracChangeset
for help on using the changeset viewer.