LRT13  1.0
 All Classes Namespaces Functions Variables Enumerations Enumerator
Shoot.h
1 #ifndef SHOOT_H_
2 #define SHOOT_H_
3 
4 #include "Routine.h"
5 #include "Timer.h"
6 
7 class Shoot : public Routine
8 {
9 public:
10  Shoot(int count, double timeout = 0.0);
11 
12  virtual void Run();
13 
14  virtual void Stop();
15 
16  virtual bool Completed();
17 private:
18  int m_count;
19  double m_timeout;
20 
21  Timer m_timer;
22 
23  int m_startingCount;
24 };
25 
26 #endif