mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-10 06:39:49 +00:00
22 lines
350 B
C++
22 lines
350 B
C++
|
#include "actionsoulgem.hpp"
|
||
|
|
||
|
#include "../mwbase/windowmanager.hpp"
|
||
|
#include "../mwbase/environment.hpp"
|
||
|
|
||
|
namespace MWWorld
|
||
|
{
|
||
|
|
||
|
ActionSoulgem::ActionSoulgem(const Ptr &object)
|
||
|
: Action(false, object)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
void ActionSoulgem::executeImp(const Ptr &actor)
|
||
|
{
|
||
|
MWBase::Environment::get().getWindowManager()->showSoulgemDialog(getTarget());
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|