vrecko
virtual reality framework
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
PolygonState.h
Go to the documentation of this file.
1 #ifndef POLYGONSTATE_H
2 #define POLYGONSTATE_H
3 
4 #include "../EditorController/ControllableAbility.h"
5 
6 namespace APConnectEditor
7 {
9  public:
10  PolygonState() : ControllableAbility("PolygonState") {};
11  virtual ~PolygonState() { deactivate(); };
12 
13  protected:
14  virtual void fillDefaultInfo();
15  virtual bool activate();
16  virtual void menuItemClicked(const char* itemID);
17  };
18 }
19 
20 
21 #endif //POLYGONSTATE_H
22 
23