File: hull_ship_destruct.cpp

package info (click to toggle)
rafkill 1.2.2-3.3
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 13,268 kB
  • sloc: cpp: 13,508; makefile: 64; sh: 14
file content (14 lines) | stat: -rw-r--r-- 351 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "defs.h"
#include "spaceobj.h"
#include "trigtable.h"
#include "raptor.h"

#include "hull.h"
#include "hull_ship_destruct.h"
#include "guns/gun_destruct.h"
#include "ebox.h"

Destruct::Destruct( int life, int level, ECollide * eb ):
HullObject( NULL, life, SHIP_DAMAGE, 2, level, 10, false, eb ) {
	guns[1] = new GunDestruct(1,TEAM_ENEMY);
}