- Timestamp:
- Jan 25, 2006, 2:53:34 PM (19 years ago)
- Location:
- trunk/src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/story_entities/simple_game_menu.cc
r6634 r6696 82 82 { 83 83 /* skip the GameWorld, since it does not define any useful loadParams for this class */ 84 static_cast<GameWorld*>(this)->loadParams(root); 84 //static_cast<GameWorld*>(this)->loadParams(root); 85 GameWorld::loadParams(root); 85 86 86 87 PRINTF(4)("Loaded SimpleGameMenu specific stuff\n"); -
trunk/src/story_entities/simple_game_menu.h
r6634 r6696 31 31 virtual ~SimpleGameMenu(); 32 32 33 v oid loadParams(const TiXmlElement* root);33 virtual void loadParams(const TiXmlElement* root); 34 34 35 35 virtual ErrorMessage init(); -
trunk/src/world_entities/image_entity.cc
r6634 r6696 79 79 void ImageEntity::loadParams(const TiXmlElement* root) 80 80 { 81 static_cast<PNode*>(this)->loadParams(root);81 PNode::loadParams(root); 82 82 83 83 LoadParam(root, "texture", this, ImageEntity, setTexture) -
trunk/src/world_entities/planet.cc
r6695 r6696 78 78 void Planet::loadParams(const TiXmlElement* root) 79 79 { 80 static_cast<WorldEntity*>(this)->loadParams(root);80 WorldEntity::loadParams(root); 81 81 82 82 LoadParam(root, "texture", this, Planet, setTexture) -
trunk/src/world_entities/space_ships/space_ship.cc
r6695 r6696 130 130 this->getWeaponManager()->changeWeaponConfig(1); 131 131 132 EventHandler::getInstance()->grabEvents(true);132 //EventHandler::getInstance()->grabEvents(true); 133 133 134 134 bUp = bDown = bLeft = bRight = bAscend = bDescend = bRollL = bRollR = false; … … 140 140 controlVelocityX = 25; 141 141 controlVelocityY = 150; 142 shipInertia = 0.5 142 shipInertia = 0.5 ; 143 143 // cycle = 0.0; 144 144
Note: See TracChangeset
for help on using the changeset viewer.