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 "Importer/BsImportOptions.h"
4#include "Private/RTTI/BsImportOptionsRTTI.h"
5
6namespace bs
7{
8 /************************************************************************/
9 /* SERIALIZATION */
10 /************************************************************************/
11 RTTITypeBase* ImportOptions::getRTTIStatic()
12 {
13 return ImportOptionsRTTI::instance();
14 }
15
16 RTTITypeBase* ImportOptions::getRTTI() const
17 {
18 return ImportOptions::getRTTIStatic();
19 }
20}