OpenMW
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
actionrepair.hpp
Go to the documentation of this file.
1 #ifndef GAME_MWWORLD_ACTIONREPAIR_H
2 #define GAME_MWWORLD_ACTIONREPAIR_H
3 
4 #include "action.hpp"
5 
6 namespace MWWorld
7 {
8  class ActionRepair : public Action
9  {
10  bool mForce;
11 
12  virtual void executeImp (const Ptr& actor);
13 
14  public:
16  ActionRepair(const Ptr& item, bool force=false);
17  };
18 }
19 
20 #endif
bool mForce
Definition: actionrepair.hpp:10
Abstract base for actions.
Definition: action.hpp:11
virtual void executeImp(const Ptr &actor)
Definition: actionrepair.cpp:17
Definition: actionrepair.hpp:8
Pointer to a LiveCellRef.
Definition: ptr.hpp:19
ActionRepair(const Ptr &item, bool force=false)
Definition: actionrepair.cpp:11