BsImportOptions.cpp 831 B

123456789101112131415161718192021
  1. //__________________________ Banshee Project - A modern game development toolkit _________________________________//
  2. //_____________________________________ www.banshee-project.com __________________________________________________//
  3. //________________________ Copyright (c) 2014 Marko Pintera. All rights reserved. ________________________________//
  4. #include "BsImportOptions.h"
  5. #include "BsImportOptionsRTTI.h"
  6. namespace BansheeEngine
  7. {
  8. /************************************************************************/
  9. /* SERIALIZATION */
  10. /************************************************************************/
  11. RTTITypeBase* ImportOptions::getRTTIStatic()
  12. {
  13. return ImportOptionsRTTI::instance();
  14. }
  15. RTTITypeBase* ImportOptions::getRTTI() const
  16. {
  17. return ImportOptions::getRTTIStatic();
  18. }
  19. }