]> Shamusworld >> Repos - architektonas/blob - src/actions/actionmodifyexplodetext.h
Fixed problem with MDI activation.
[architektonas] / src / actions / actionmodifyexplodetext.h
1 #ifndef __ACTIONMODIFYEXPLODETEXT_H__
2 #define __ACTIONMODIFYEXPLODETEXT_H__
3
4 #include "actioninterface.h"
5
6 /**
7  * This action class can handle user events for exploding blocks and
8  * other entity containers into single entities.
9  *
10  * @author James Hammons
11  * @author Andrew Mustun
12  */
13 class ActionModifyExplodeText: public ActionInterface
14 {
15         public:
16                 ActionModifyExplodeText(EntityContainer & container, GraphicView & graphicView);
17                 ~ActionModifyExplodeText();
18
19                 virtual RS2::ActionType rtti();
20                 virtual void init(int status = 0);
21                 virtual void trigger();
22 };
23
24 #endif  // __ACTIONMODIFYEXPLODETEXT_H__