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 "Text/BsFontImportOptions.h"
4#include "Private/RTTI/BsFontImportOptionsRTTI.h"
5
6namespace bs
7{
8 SPtr<FontImportOptions> FontImportOptions::create()
9 {
10 return bs_shared_ptr_new<FontImportOptions>();
11 }
12
13 /************************************************************************/
14 /* SERIALIZATION */
15 /************************************************************************/
16 RTTITypeBase* FontImportOptions::getRTTIStatic()
17 {
18 return FontImportOptionsRTTI::instance();
19 }
20
21 RTTITypeBase* FontImportOptions::getRTTI() const
22 {
23 return FontImportOptions::getRTTIStatic();
24 }
25}