1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-09 03:39:14 +00:00
OpenMW/apps/openmw/mwgui/itemwidget.hpp

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