mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-10 06:39:49 +00:00
13 lines
262 B
C++
13 lines
262 B
C++
|
#include "actionalchemy.hpp"
|
||
|
|
||
|
#include "../mwbase/environment.hpp"
|
||
|
#include "../mwgui/window_manager.hpp"
|
||
|
|
||
|
namespace MWWorld
|
||
|
{
|
||
|
void ActionAlchemy::execute()
|
||
|
{
|
||
|
MWBase::Environment::get().getWindowManager()->pushGuiMode(MWGui::GM_Alchemy);
|
||
|
}
|
||
|
}
|