vrecko
virtual reality framework
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
UseTrigger.h
Go to the documentation of this file.
1 #ifndef USETRIGGER_H
2 #define USETRIGGER_H
3 
4 #include "../EditorController/ControllableAbility.h"
5 #include <vrecko/Ability.h>
7 
8 using namespace vrecko;
9 
10 namespace APEditorQAbilities {
11 
13 public:
14  UseTrigger();
15  virtual ~UseTrigger() {};
16 
17 protected:
18  virtual void fillDefaultInfo();
19  virtual bool activate();
20  virtual void deactivate();
21 
22  bool SendUseSignal(bool bParameter);
23  /* Send a signal to every ability of the selected object that
24  has the "Use" input of type BOOL. */
25 };
26 
27 }
28 
29 #endif