File: hull_weapon_explode.h

package info (click to toggle)
rafkill 1.2.2-3.2
  • links: PTS
  • area: main
  • in suites: lenny, squeeze
  • size: 13,264 kB
  • ctags: 5,074
  • sloc: cpp: 13,508; makefile: 64; sh: 14
file content (29 lines) | stat: -rw-r--r-- 578 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#ifndef _hull_weapon_explode_h
#define _hull_weapon_explode_h

#include "hull.h"
#include "bitmap.h"

class ECollide;
class Section;

class Explode_WHull:public HullObject{
public:

	Explode_WHull( int str, ECollide ** _collide_list, int _max_list );
	virtual void Draw( const Bitmap & who, int x, int y );
	virtual void Moved( double _dx, double _dy, double _ax, double _ay );
	//virtual void addSection( SpaceObject * who, Section * onscreen, int x, int y );

	virtual ~Explode_WHull();

protected:

	int size;
	int use;
	ECollide ** collide_list;
	int max_list;
	
};

#endif