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