BsImportOptions.cpp 480 B

123456789101112131415161718
  1. #include "BsImportOptions.h"
  2. #include "BsImportOptionsRTTI.h"
  3. namespace BansheeEngine
  4. {
  5. /************************************************************************/
  6. /* SERIALIZATION */
  7. /************************************************************************/
  8. RTTITypeBase* ImportOptions::getRTTIStatic()
  9. {
  10. return ImportOptionsRTTI::instance();
  11. }
  12. RTTITypeBase* ImportOptions::getRTTI() const
  13. {
  14. return ImportOptions::getRTTIStatic();
  15. }
  16. }