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.
19 lines
455 B
C++
19 lines
455 B
C++
12 years ago
|
#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());
|
||
|
}
|
||
|
}
|