Changeset 9971 in orxonox.OLD for branches/playability/src/world_entities/player.h
- Timestamp:
- Nov 29, 2006, 4:29:22 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/playability/src/world_entities/player.h
r9869 r9971 10 10 11 11 #include "util/hud.h" 12 #include "world_entities/space_ships/playership.h" 12 13 13 14 /* Forward Declaration */ … … 31 32 bool setPlayable(Playable* controllalble); 32 33 bool eject(); 34 void setPlayerShip(PlayerShip playership); 35 PlayerShip* getPlayerShip(); 33 36 inline Playable* getPlayable() const { return this->playable; }; 34 37 … … 46 49 private: 47 50 Playable* playable; //!< The one we controll or NULL if none 48 Hud _hud; //!< The HUD to be displayed for this Player. 51 Hud _hud; //!< The HUD to be displayed for this Player. 52 PlayerShip playership; 49 53 }; 50 54
Note: See TracChangeset
for help on using the changeset viewer.