1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-25 15:35:23 +00:00
OpenMW/apps/openmw/mwgui/inventorywindow.hpp

36 lines
545 B
C++

#ifndef MGUI_Inventory_H
#define MGUI_Inventory_H
#include "container.hpp"
namespace MWWorld
{
class Environment;
}
namespace MyGUI
{
class Gui;
class Widget;
}
namespace MWGui
{
class WindowManager;
}
namespace MWGui
{
class InventoryWindow : public MWGui::ContainerBase
{
public:
InventoryWindow(WindowManager& parWindowManager,DragAndDrop* dragAndDrop);
void openInventory();
protected:
void onWindowResize(MyGUI::Window* _sender);
};
}
#endif // Inventory_H