]> Shamusworld >> Repos - architektonas/blob - src/actions/actionmodifyentity.h
Removed unnecessary RS_ prefix from classes and whatnot.
[architektonas] / src / actions / actionmodifyentity.h
1 #ifndef __ACTIONMODIFYENTITY_H__
2 #define __ACTIONMODIFYENTITY_H__
3
4 #include "actioninterface.h"
5
6 class Entity;
7
8 /**
9  * This action class can handle user events to select entities.
10  *
11  * @author James Hammons
12  * @author Andrew Mustun
13  */
14 class ActionModifyEntity: public ActionInterface
15 {
16         public:
17                 ActionModifyEntity(EntityContainer & container, GraphicView & graphicView);
18                 ~ActionModifyEntity();
19
20                 virtual void trigger();
21                 virtual void mouseReleaseEvent(QMouseEvent * e);
22                 virtual void updateMouseCursor();
23
24         private:
25                 Entity * en;
26 };
27
28 #endif  // __ACTIONMODIFYENTITY_H__