1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-16 09:49:55 +00:00
openmw-tes3mp/apps/openmw/mwworld/actionopen.cpp

23 lines
620 B
C++
Raw Normal View History

2012-04-15 15:52:39 +00:00
#include "actionopen.hpp"
2012-05-11 09:52:07 +00:00
#include "../mwbase/environment.hpp"
2012-04-15 15:52:39 +00:00
#include "class.hpp"
#include "world.hpp"
#include "containerstore.hpp"
#include "../mwclass/container.hpp"
#include "../mwgui/window_manager.hpp"
#include "../mwgui/container.hpp"
namespace MWWorld
{
ActionOpen::ActionOpen (const MWWorld::Ptr& container) : mContainer (container) {
mContainer = container;
}
2012-05-11 09:52:07 +00:00
void ActionOpen::execute ()
2012-04-15 15:52:39 +00:00
{
2012-05-11 09:52:07 +00:00
MWBase::Environment::get().getWindowManager()->setGuiMode(MWGui::GM_Container);
MWBase::Environment::get().getWindowManager()->getContainerWindow()->open(mContainer);
2012-04-15 15:52:39 +00:00
}
}