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