mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-02-04 21:40:03 +00:00
18 lines
282 B
C++
18 lines
282 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:
|
|
|
|
int mPos;
|
|
};
|
|
}
|
|
|
|
#endif
|