Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/playability/src/world_entities/weapons/swarm_launcher.h @ 10023

Last change on this file since 10023 was 10023, checked in by marcscha, 17 years ago

little modifications to swarm launcher

File size: 540 bytes
Line 
1/*!
2 * @file swarm_launcher.h
3*/
4
5
6#ifndef _SWARM_LAUNCHER_H
7#define _SWARM_LAUNCHER_H
8
9#include "weapon.h"
10
11class SwarmLauncher : public Weapon
12  {
13  ObjectListDeclaration(SwarmLauncher);
14  public:
15    SwarmLauncher ();
16    SwarmLauncher(const TiXmlElement* root);
17    virtual ~SwarmLauncher ();
18
19    void init();
20    virtual void loadParams(const TiXmlElement* root);
21
22    virtual void activate();
23    virtual void deactivate();
24
25    virtual void tick(float dt);
26    virtual void fire();
27
28
29  private:
30  };
31
32#endif /* _SWARM_LAUNCHER_H */
Note: See TracBrowser for help on using the repository browser.