1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-27 03:35:27 +00:00
OpenMW/apps/openmw/mwgui/inventorywindow.cpp

35 lines
859 B
C++
Raw Normal View History

2012-04-21 10:51:01 +02:00
#include "inventorywindow.hpp"
#include <iterator>
#include <algorithm>
#include "window_manager.hpp"
#include "widgets.hpp"
2012-04-21 10:51:01 +02:00
2012-05-11 11:52:07 +02:00
#include "../mwbase/environment.hpp"
#include "../mwworld/manualref.hpp"
#include <cmath>
#include <algorithm>
#include <iterator>
#include <assert.h>
#include <iostream>
#include "../mwclass/container.hpp"
#include "../mwworld/containerstore.hpp"
#include <boost/lexical_cast.hpp>
#include "../mwworld/class.hpp"
#include "../mwworld/world.hpp"
#include "../mwworld/player.hpp"
2012-04-21 10:51:01 +02:00
namespace MWGui
{
2012-05-11 11:52:07 +02:00
InventoryWindow::InventoryWindow(WindowManager& parWindowManager,DragAndDrop* dragAndDrop)
2012-05-12 13:12:37 +02:00
: ContainerBase(parWindowManager,dragAndDrop,"openmw_inventory_window_layout.xml")
2012-04-21 10:51:01 +02:00
{
}
void InventoryWindow::openInventory()
{
2012-05-11 11:52:07 +02:00
open(MWBase::Environment::get().getWorld()->getPlayer().getPlayer());
}
2012-04-22 21:06:08 +02:00
}