#ifndef GAME_MWWORLD_ACTIONAPPLY_H #define GAME_MWWORLD_ACTIONAPPLY_H #include "action.hpp" #include #include namespace MWWorld { class ActionApply : public Action { ESM::RefId mId; void executeImp(const Ptr& actor) override; public: ActionApply(const Ptr& object, const ESM::RefId& id); }; } #endif