You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
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());
|
|
}
|
|
|
|
|
|
}
|