1//************************************ bs::framework - Copyright 2018 Marko Pintera **************************************//
2//*********** Licensed under the MIT license. See LICENSE.md for full terms. This notice is not to be removed. ***********//
3#include "Private/RTTI/BsGUISkinRTTI.h"
4
5namespace bs
6{
7 GUISkinEntry::GUISkinEntry(const String& name, const GUIElementStyle& style)
8 :name(name), style(style)
9 { }
10
11 RTTITypeBase* GUISkinEntry::getRTTIStatic()
12 {
13 return GUISkinEntryRTTI::instance();
14 }
15
16 RTTITypeBase* GUISkinEntry::getRTTI() const
17 {
18 return GUISkinEntry::getRTTIStatic();
19 }
20}