1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-02-06 20:45:33 +00:00
openmw-tes3mp/apps/openmw/mwgui/inventorywindow.hpp

33 lines
479 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
{
class InventoryWindow : public MWGui::ContainerWindow
{
public:
InventoryWindow(WindowManager& parWindowManager,MWWorld::Environment& environment);
void openInventory();
2012-04-21 08:51:01 +00:00
};
}
#endif // Inventory_H