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