File: weapon_rocket.h

package info (click to toggle)
rafkill 1.2.2-4
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 13,268 kB
  • ctags: 5,074
  • sloc: cpp: 13,508; makefile: 64; sh: 14
file content (19 lines) | stat: -rw-r--r-- 273 bytes parent folder | download | duplicates (13)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef _weapon_rocket_h
#define _weapon_rocket_h

#include "weaponobj.h"
class HullObject;

class Rocket:public WeaponNode{
public:
	Rocket(int qx, int qy, double kx, double ky, HullObject * hnew, int al);
	virtual void MoveReal();

protected:

double speed;

};

#endif