LRT14  1.0
 All Classes Namespaces Functions Variables Enumerations Enumerator
ChangeLauncherAngle.h
1 #ifndef CHANGE_LAUNCHER_ANGLE_H_
2 #define CHANGE_LAUNCHER_ANGLE_H_
3 
4 #include "Automation.h"
5 #include "../../ComponentData/LauncherLoaderData.h"
6 #include "../../ComponentData/LauncherAngleData.h"
7 
12 {
13 public:
14  ChangeLauncherAngle(bool longShot);
15 
16  bool Start();
17  bool Run();
18  bool Abort();
19  void AllocateResources();
20 
21 private:
22  LauncherLoaderData* m_loaderData;
23  LauncherAngleData* m_angleData;
24 
25  bool m_long;
26 };
27 
28 #endif