Changeset 6985 in orxonox.OLD for trunk/src/world_entities/player.h
- Timestamp:
- Feb 2, 2006, 4:09:46 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/world_entities/player.h
r6871 r6985 1 1 /*! 2 2 * @file player.h 3 * Implements a basic controllable WorldEntity3 * Implements a basic playable WorldEntity 4 4 */ 5 5 … … 15 15 16 16 17 //! Basic controllable WorldEntity17 //! Basic playable WorldEntity 18 18 /** 19 19 * this is the debug player - actualy we would have to make a new … … 28 28 virtual ~Player(); 29 29 30 bool set Controllable(Playable* controllalble);31 inline Playable* get Controllable() { return this->controllable; };32 bool disconnect Controllable();30 bool setPlayable(Playable* controllalble); 31 inline Playable* getPlayable() { return this->playable; }; 32 bool disconnectPlayable(); 33 33 34 34 void weaponConfigChanged(); … … 38 38 39 39 private: 40 Playable* controllable; //!< The one we controll or NULL if none40 Playable* playable; //!< The one we controll or NULL if none 41 41 Hud hud; //!< The HUD to be displayed for this Player. 42 42 };
Note: See TracChangeset
for help on using the changeset viewer.