mirror of
				https://github.com/TES3MP/openmw-tes3mp.git
				synced 2025-11-04 05:56:41 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			360 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			360 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#ifndef MWGUI_RESOURCESKIN_H
 | 
						|
#define MWGUI_RESOURCESKIN_H
 | 
						|
 | 
						|
#include <MyGUI_ResourceSkin.h>
 | 
						|
 | 
						|
namespace MWGui
 | 
						|
{
 | 
						|
    class AutoSizedResourceSkin final : public MyGUI::ResourceSkin
 | 
						|
    {
 | 
						|
        MYGUI_RTTI_DERIVED( AutoSizedResourceSkin )
 | 
						|
 | 
						|
    public:
 | 
						|
        void deserialization(MyGUI::xml::ElementPtr _node, MyGUI::Version _version) override;
 | 
						|
    };
 | 
						|
 | 
						|
}
 | 
						|
 | 
						|
#endif
 |