1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-16 05:19:55 +00:00
openmw-tes3mp/apps/openmw/mwgui/resourceskin.hpp

19 lines
357 B
C++
Raw Normal View History

#ifndef MWGUI_RESOURCESKIN_H
#define MWGUI_RESOURCESKIN_H
#include <MyGUI_ResourceSkin.h>
namespace MWGui
{
2020-02-13 20:36:56 +00:00
class AutoSizedResourceSkin final : public MyGUI::ResourceSkin
{
MYGUI_RTTI_DERIVED( AutoSizedResourceSkin )
public:
2020-02-13 20:36:56 +00:00
void deserialization(MyGUI::xml::ElementPtr _node, MyGUI::Version _version) final;
};
}
#endif