12345678910111213141516171819202122232425262728293031323334353637383940 |
- #ifndef _TOGGLE_WEAPON_ACTION_H_
- #define _TOGGLE_WEAPON_ACTION_H_
- #ifndef _ACTION_H_
- #include "Action.h"
- #endif
- namespace Training
- {
-
-
-
- class ToggleWeaponAction : public Action
- {
- public:
- ToggleWeaponAction (Mount mount);
- virtual ~ToggleWeaponAction (void);
- virtual void Execute (void);
- protected:
- Mount m_mount;
- };
-
- }
- #endif
|