mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-09 12:42:11 +00:00
19 lines
455 B
C++
19 lines
455 B
C++
#include "actionrepair.hpp"
|
|
|
|
#include "../mwbase/environment.hpp"
|
|
#include "../mwbase/windowmanager.hpp"
|
|
|
|
namespace MWWorld
|
|
{
|
|
ActionRepair::ActionRepair(const Ptr &item)
|
|
: Action(false, item)
|
|
{
|
|
}
|
|
|
|
void ActionRepair::executeImp (const Ptr& actor)
|
|
{
|
|
MWBase::Environment::get().getWindowManager()->pushGuiMode(MWGui::GM_Repair);
|
|
MWBase::Environment::get().getWindowManager()->startRepairItem(getTarget());
|
|
}
|
|
}
|