Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jan 28, 2006, 3:30:54 PM (18 years ago)
Author:
bensch
Message:

trunk: added hyperblaster

File:
1 copied

Legend:

Unmodified
Added
Removed
  • trunk/src/world_entities/projectiles/hyperblast.h

    r6807 r6810  
    11/*!
    2  * @file rocket.h
    3  * @brief a Rocket Projectile
     2 * @file hyperblast.h
     3 * @brief a Hyperblast Projectile
    44*/
    55
    6 #ifndef _ROCKET_H
    7 #define _ROCKET_H
     6#ifndef _HYPERBLAST_H
     7#define _HYPERBLAST_H
    88
    99#include "projectile.h"
     
    1212class Weapon;
    1313class SpriteParticles;
     14class SparkParticles;
    1415class ParticleEmitter;
    1516class FastFactory;
    1617
    17 class Rocket : public Projectile
     18class Hyperblast : public Projectile
    1819{
    1920  public:
    20     Rocket ();
    21     virtual ~Rocket ();
     21    Hyperblast ();
     22    virtual ~Hyperblast ();
    2223
    2324
     
    3536  private:
    3637    static FastFactory*               fastFactory;
    37     static SpriteParticles*           trailParticles;
    38     static SpriteParticles*           explosionParticles;
     38    static SpriteParticles*           extParticles;
     39    static SparkParticles*            explosionParticles;
    3940
    4041    ParticleEmitter*                  emitter;
    4142
    42 
    4343    WorldEntity* hitEntity; // FIXME TEMPORARY
    44 
    4544};
    4645
    47 #endif /* _ROCKET_H */
     46#endif /* _HYPERBLAST_H */
Note: See TracChangeset for help on using the changeset viewer.