mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 08:19:56 +00:00
35 lines
545 B
C++
35 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
|