1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-02-10 12:39:53 +00:00
OpenMW/apps/openmw/mwworld/actionsoulgem.hpp

19 lines
331 B
C++
Raw Normal View History

#ifndef GAME_MWWORLD_ACTIONSOULGEM_H
#define GAME_MWWORLD_ACTIONSOULGEM_H
#include "action.hpp"
namespace MWWorld
{
class ActionSoulgem : public Action
{
2022-09-22 21:26:05 +03:00
void executeImp(const MWWorld::Ptr& actor) override;
2022-09-22 21:26:05 +03:00
public:
/// @param soulgem to use
ActionSoulgem(const Ptr& object);
};
}
#endif