mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-11 09:36:37 +00:00
33 lines
468 B
C++
33 lines
468 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();
|
|
};
|
|
}
|
|
#endif // Inventory_H
|