| 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 "GUI/BsGUIElementStyle.h" |
| 4 | #include "Private/RTTI/BsGUIElementStyleRTTI.h" |
| 5 | |
| 6 | namespace bs |
| 7 | { |
| 8 | RTTITypeBase* GUIElementStyle::getRTTIStatic() |
| 9 | { |
| 10 | return GUIElementStyleRTTI::instance(); |
| 11 | } |
| 12 | |
| 13 | RTTITypeBase* GUIElementStyle::getRTTI() const |
| 14 | { |
| 15 | return GUIElementStyle::getRTTIStatic(); |
| 16 | } |
| 17 | } |