1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-19 21:53:51 +00:00
openmw-tes3mp/apps/openmw/mwgui/inventorywindow.hpp

36 lines
545 B
C++
Raw Normal View History

2012-04-21 08:51:01 +00:00
#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
{
2012-05-12 11:12:37 +00:00
class InventoryWindow : public MWGui::ContainerBase
2012-04-21 08:51:01 +00:00
{
public:
2012-05-11 09:52:07 +00:00
InventoryWindow(WindowManager& parWindowManager,DragAndDrop* dragAndDrop);
void openInventory();
protected:
void onWindowResize(MyGUI::Window* _sender);
2012-04-21 08:51:01 +00:00
};
}
#endif // Inventory_H