Vegastrike 0.5.1 rc1  1.0
Original sources for Vegastrike Evolved
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
turretai.h
Go to the documentation of this file.
1 #ifndef _TURRETAI_H_
2 #define _TURRETAI_H_
3 #include "navigation.h"
4 namespace Orders
5 {
6 class TurretAI : public FaceTargetITTS
7 {
8  float range;
9  float speed;
10  float mrange;
11 public: TurretAI();
12  virtual void Execute();
13  virtual void getAverageGunSpeed( float &speed, float &range, float &mrange ) const;
14 };
15 }
16 #endif
17