1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-04 02:41:19 +00:00
OpenMW/apps/openmw/mwworld/actionapply.hpp
2023-06-08 18:35:49 +02:00

22 lines
381 B
C++

#ifndef GAME_MWWORLD_ACTIONAPPLY_H
#define GAME_MWWORLD_ACTIONAPPLY_H
#include "action.hpp"
#include <components/esm/refid.hpp>
#include <string>
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