]> Shamusworld >> Repos - architektonas/blob - src/actions/actionblocksremove.h
Fixed problem with MDI activation.
[architektonas] / src / actions / actionblocksremove.h
1 #ifndef __ACTIONBLOCKSREMOVE_H__
2 #define __ACTIONBLOCKSREMOVE_H__
3
4 #include "actioninterface.h"
5
6 /**
7  * This action class can handle user events to remove blocks.
8  *
9  * @author James Hammons
10  * @author Andrew Mustun
11  */
12 class ActionBlocksRemove: public ActionInterface
13 {
14         public:
15                 ActionBlocksRemove(EntityContainer & container, GraphicView & graphicView);
16                 ~ActionBlocksRemove();
17
18                 virtual void init(int status = 0);
19                 virtual void trigger();
20 };
21
22 #endif  // __ACTIONBLOCKSREMOVE_H__