Changeset 5855 in orxonox.OLD for branches/spaceshipcontrol/src
- Timestamp:
 - Dec 1, 2005, 5:57:39 PM (20 years ago)
 - Location:
 - branches/spaceshipcontrol/src/world_entities
 - Files:
 - 
          
- 2 edited
 
- 
          playable.cc (modified) (1 diff)
 - 
          playable.h (modified) (2 diffs)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
        
branches/spaceshipcontrol/src/world_entities/playable.cc
r5854 r5855 33 33 return weaponMan; 34 34 } 35 36 std::list<Event*>* Playable::getEventList()37 {38 return events;39 } - 
        
branches/spaceshipcontrol/src/world_entities/playable.h
r5854 r5855 36 36 virtual void setKeySet(); 37 37 virtual void getKeySet(); 38 std::list<Event*> getEventList();38 inline const std::list<Event*>& getEventList() { return this->events; }; 39 39 WeaponManager* getWeaponManager(); 40 40 … … 42 42 43 43 WeaponManager* weaponMan; //!< the weapon manager: managing a list of weapon to wepaon-slot mapping 44 std::list<Event*> *events;44 std::list<Event*> events; 45 45 46 46  
Note: See TracChangeset
          for help on using the changeset viewer.
      


            






