mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 15:49:55 +00:00
18 lines
308 B
C++
18 lines
308 B
C++
|
#ifndef MWGUI_ITEM_WIDGET_H
|
||
|
#define MWGUI_ITEM_WIDGET_H
|
||
|
#include <openengine/gui/layout.hpp>
|
||
|
#include "../mwworld/ptr.hpp"
|
||
|
|
||
|
namespace MWGui
|
||
|
{
|
||
|
class ItemWidget: public MyGUI::ImageBox
|
||
|
{
|
||
|
MYGUI_RTTI_DERIVED( ItemWidget )
|
||
|
public:
|
||
|
|
||
|
MWWorld::Ptr mPtr;
|
||
|
int mPos;
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|