Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/spaceshipcontrol/src/world_entities/player.h @ 5849

Last change on this file since 5849 was 5847, checked in by snellen, 19 years ago

player.cc and player.h updated (both files in ../src/world_entities)

File size: 801 bytes
RevLine 
[4780]1/*!
[4885]2 * @file player.h
3 * Implements a basic controllable WorldEntity
[4818]4 */
[3471]5
6#ifndef _PLAYER_H
7#define _PLAYER_H
8
9#include "world_entity.h"
[4382]10#include "physics_interface.h"
[4404]11#include "event_listener.h"
[5839]12#include "playable.h"
[3471]13
14
15//! Basic controllable WorldEntity
[4885]16/**
17  *  this is the debug player - actualy we would have to make a new
18     class derivated from Player for each player. for now, we just use
19     the player.cc for debug also
20*/
[5839]21class Player : public EventListener
[3471]22{
[4780]23
[4818]24  public:
25    Player();
26    virtual ~Player();
[3583]27
[5840]28    void          init();
29    void          subscribeEvents();
[4780]30
[5840]31    virtual void  process(const Event &event);
[4780]32
[5847]33    void          setControllable(Playable* controllalble);
[5840]34    Playable*     getControllable();
[3471]35
[5840]36
[4818]37  private:
[5839]38    Playable* controllable;
[3755]39
[3583]40
[3471]41};
42
43#endif /* _PLAYER_H */
Note: See TracBrowser for help on using the repository browser.