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  virtual void executeImp (const Ptr& actor);
11 
12  public:
13  ActionRepair(const MWWorld::Ptr& item);
14  };
15 }
16 
17 #endif
Abstract base for actions.
Definition: action.hpp:11
virtual void executeImp(const Ptr &actor)
Definition: actionrepair.cpp:16
ActionRepair(const MWWorld::Ptr &item)
Definition: actionrepair.cpp:11
Definition: actionrepair.hpp:8
Pointer to a LiveCellRef.
Definition: ptr.hpp:19