LRT13  1.0
 All Classes Namespaces Functions Variables Enumerations Enumerator
ShooterTest.h
1 #ifndef SHOOTER_TEST_H_
2 #define SHOOTER_TEST_H_
3 
4 #include "../UnitTests/UnitTest.h"
5 #include "../Components/Shooter.h"
6 
7 class ShooterTest : public UnitTest
8 {
9 public:
10  ShooterTest();
11  ~ShooterTest();
12 
13  void Run();
14 
15 private:
16  Shooter* m_shooterComponent;
17 };
18 
19 #endif