mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-29 06:15:32 +00:00
13 lines
303 B
C++
13 lines
303 B
C++
#include "actionalchemy.hpp"
|
|
|
|
#include "../mwbase/environment.hpp"
|
|
#include "../mwbase/windowmanager.hpp"
|
|
|
|
namespace MWWorld
|
|
{
|
|
bool ActionAlchemy::executeImp (const Ptr& actor)
|
|
{
|
|
MWBase::Environment::get().getWindowManager()->pushGuiMode(MWGui::GM_Alchemy);
|
|
return true;
|
|
}
|
|
}
|