Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Nov 24, 2005, 3:06:54 PM (18 years ago)
Author:
snellen
Message:

guided_missile updated

File:
1 copied

Legend:

Unmodified
Added
Removed
  • branches/guidedmissile/src/world_entities/weapons/guided_missile.h

    r5758 r5759  
    11/*!
    2  * @file rocket.h
    3  * @brief a Rocket Projectile
     2 * @file guided_missile.h
     3 * @brief a GuidedMissile Projectile
    44*/
    55
    6 #ifndef _ROCKET_H
    7 #define _ROCKET_H
     6#ifndef _GUIDED_MISSILE_H
     7#define _GUIDED_MISSILE_H
    88
    99#include "projectile.h"
     
    1414class ParticleEmitter;
    1515class FastFactory;
     16class Aim;
    1617
    17 class Rocket : public Projectile
     18class GuidedMissile : public Projectile
    1819{
    1920  public:
    20     Rocket ();
    21     virtual ~Rocket ();
     21    GuidedMissile ();
     22    virtual ~GuidedMissile ();
    2223
    23 
     24    void setTarget(PNode* target);
    2425    virtual void activate();
    2526    virtual void deactivate();
     
    3940
    4041    ParticleEmitter*                  emitter;
    41 
     42    Aim*                              target;
    4243
    4344    WorldEntity* hitEntity; // FIXME TEMPORARY
     
    4546};
    4647
    47 #endif /* _ROCKET_H */
     48#endif /* _GUIDED_MISSILE_H */
Note: See TracChangeset for help on using the changeset viewer.