]> Shamusworld >> Repos - architektonas/blob - src/actions/rs_actionmodifyexplodetext.h
f4e7c7194d6a26a48e79c8630fb49deb2e054b1d
[architektonas] / src / actions / rs_actionmodifyexplodetext.h
1 #ifndef RS_ACTIONMODIFYEXPLODETEXT_H
2 #define RS_ACTIONMODIFYEXPLODETEXT_H
3
4 #include "rs_previewactioninterface.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 Andrew Mustun
11  */
12 class RS_ActionModifyExplodeText: public RS_PreviewActionInterface
13 {
14         public:
15                 RS_ActionModifyExplodeText(RS_EntityContainer & container, GraphicView & graphicView);
16                 ~RS_ActionModifyExplodeText();
17
18                 virtual RS2::ActionType rtti();
19                 virtual void init(int status = 0);
20                 virtual void trigger();
21 };
22
23 #endif