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