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