1 /*
2  * Copyright (c) 2000 Mark B. Allan. All rights reserved.
3  *
4  * "Chromium B.S.U." is free software; you can redistribute
5  * it and/or use it and/or modify it under the terms of the
6  * "Clarified Artistic License"
7  */
8 #ifndef EnemyAircraft_Tank_h
9 #define EnemyAircraft_Tank_h
10 
11 #include "EnemyAircraft.h"
12 
13 class ActiveAmmo;
14 class Global;
15 
16 //====================================================================
17 class EnemyAircraft_Tank : public EnemyAircraft
18 {
19 public:
20 	EnemyAircraft_Tank(EnemyType et, float p[3], float randFact = 1.0);
21 	virtual ~EnemyAircraft_Tank();
22 
23 	void	update();
24 	void	init();
25 	void	init(float *p, float randFact = 1.0);
26 
27 friend class EnemyFleet;
28 friend class ScreenItemAdd;
29 
30 protected:
31 	void	move();
32 };
33 
34 #endif //EnemyAircraft_Tank_h
35