mirror of
https://github.com/TES3MP/TES3MP.git
synced 2025-10-04 10:32:04 -04: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());
|
|
}
|
|
}
|