Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 9, 2005, 5:30:44 PM (18 years ago)
Author:
bensch
Message:

orxonox/trunk: implemented the helicopter

File:
1 copied

Legend:

Unmodified
Added
Removed
  • trunk/src/world_entities/space_ships/helicopter.h

    r5999 r6002  
    11
    22/*!
    3  * @file space_ship.h
    4  * Implements the Control of a Spaceship
     3 * @file helicopter.h
     4 * Implements the Control of a Helicopter
    55 */
    66
    7 #ifndef _SPACE_SHIP_H
    8 #define _SPACE_SHIP_H
     7#ifndef _HELICOPTER_H
     8#define _HELICOPTER_H
    99
    1010#include "playable.h"
    1111
    12 template<class T> class tList;
    13 class Vector;
    14 class Event;
    1512
    16 class SpaceShip : public Playable
     13class Helicopter : public Playable
    1714{
    1815
    1916  public:
    2017
    21     SpaceShip();
    22     SpaceShip(const char* fileName);
    23     SpaceShip(const TiXmlElement* root);
    24     virtual ~SpaceShip();
     18    Helicopter();
     19    Helicopter(const char* fileName);
     20    Helicopter(const TiXmlElement* root);
     21    virtual ~Helicopter();
    2522
    2623    void init();
     
    3532    virtual void collidesWith(WorldEntity* entity, const Vector& location);
    3633    virtual void tick(float time);
    37     virtual void draw() const;
    3834
    3935    virtual void process(const Event &event);
     
    7167};
    7268
    73 #endif /* _SPACE_SHIPS_H */
     69#endif /* _HELICOPTERS_H */
Note: See TracChangeset for help on using the changeset viewer.