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