Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 6985 in orxonox.OLD for trunk/src/world_entities/player.h


Ignore:
Timestamp:
Feb 2, 2006, 4:09:46 PM (19 years ago)
Author:
bensch
Message:

trunk: rename of setControllable

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/world_entities/player.h

    r6871 r6985  
    11/*!
    22 * @file player.h
    3  * Implements a basic controllable WorldEntity
     3 * Implements a basic playable WorldEntity
    44 */
    55
     
    1515
    1616
    17 //! Basic controllable WorldEntity
     17//! Basic playable WorldEntity
    1818/**
    1919  *  this is the debug player - actualy we would have to make a new
     
    2828    virtual ~Player();
    2929
    30     bool              setControllable(Playable* controllalble);
    31     inline Playable*  getControllable() { return this->controllable; };
    32     bool              disconnectControllable();
     30    bool              setPlayable(Playable* controllalble);
     31    inline Playable*  getPlayable() { return this->playable; };
     32    bool              disconnectPlayable();
    3333
    3434    void              weaponConfigChanged();
     
    3838
    3939  private:
    40     Playable*         controllable;                  //!< The one we controll or NULL if none
     40    Playable*         playable;                  //!< The one we controll or NULL if none
    4141    Hud               hud;                           //!< The HUD to be displayed for this Player.
    4242};
Note: See TracChangeset for help on using the changeset viewer.