forked from mirror/openmw-tes3mp
18 lines
308 B
C++
18 lines
308 B
C++
#ifndef GAME_MWWORLD_ACTIONALCHEMY_H
|
|
#define GAME_MWWORLD_ACTIONALCHEMY_H
|
|
|
|
#include "action.hpp"
|
|
|
|
namespace MWWorld
|
|
{
|
|
class ActionAlchemy : public Action
|
|
{
|
|
bool mForce;
|
|
virtual void executeImp (const Ptr& actor);
|
|
|
|
public:
|
|
ActionAlchemy(bool force=false);
|
|
};
|
|
}
|
|
|
|
#endif
|