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
tactics.h
Go to the documentation of this file.
1 #ifndef TACTICS_H_
2 #define TACTICS_H_
3 #include "order.h"
4 
5 class CloakFor : public Order
6 {
7  float time;
8  float maxtime;
9  bool enable;
10 public: CloakFor( bool enable, float seconds = 0 ) : Order( CLOAKING, 0 )
11  , time( 0 )
12  , maxtime( seconds )
13  , enable( enable ) {}
14  void Execute();
15  ~CloakFor();
16 };
17 
18 #endif
19