12345678910111213141516171819202122232425262728293031323334353637383940 |
- #ifndef _GET_AUTOPILOT_CONDITION_H_
- #define _GET_AUTOPILOT_CONDITION_H_
- #ifndef _CONDITION_H_
- #include "Condition.h"
- #endif
- namespace Training
- {
-
-
-
- class GetAutopilotCondition : public Condition
- {
- public:
- GetAutopilotCondition (const TRef<IshipIGC>& ship);
- virtual ~GetAutopilotCondition (void);
- virtual bool Evaluate (void);
- protected:
- TRef<IshipIGC> m_ship;
- };
-
- }
- #endif
|