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