BsGUIElementStyle.cpp 288 B

123456789101112131415
  1. #include "BsGUIElementStyle.h"
  2. #include "BsGUIElementStyleRTTI.h"
  3. namespace BansheeEngine
  4. {
  5. RTTITypeBase* GUIElementStyle::getRTTIStatic()
  6. {
  7. return GUIElementStyleRTTI::instance();
  8. }
  9. RTTITypeBase* GUIElementStyle::getRTTI() const
  10. {
  11. return GUIElementStyle::getRTTIStatic();
  12. }
  13. }