mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 15:49:55 +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());
|
||
|
}
|
||
|
}
|