mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-02-05 06:40:09 +00:00
19 lines
353 B
C++
19 lines
353 B
C++
|
#ifndef MWGUI_RESOURCESKIN_H
|
||
|
#define MWGUI_RESOURCESKIN_H
|
||
|
|
||
|
#include <MyGUI_ResourceSkin.h>
|
||
|
|
||
|
namespace MWGui
|
||
|
{
|
||
|
class AutoSizedResourceSkin : public MyGUI::ResourceSkin
|
||
|
{
|
||
|
MYGUI_RTTI_DERIVED( AutoSizedResourceSkin )
|
||
|
|
||
|
public:
|
||
|
virtual void deserialization(MyGUI::xml::ElementPtr _node, MyGUI::Version _version);
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|