BsImportOptions.h 976 B

123456789101112131415161718192021222324252627282930313233
  1. //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
  2. //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
  3. #pragma once
  4. #include "BsCorePrerequisites.h"
  5. #include "BsIReflectable.h"
  6. namespace bs
  7. {
  8. /** @addtogroup Importer
  9. * @{
  10. */
  11. /**
  12. * Base class for creating import options from. Import options are specific for each importer and control how is data
  13. * imported.
  14. */
  15. class BS_CORE_EXPORT ImportOptions : public IReflectable
  16. {
  17. public:
  18. virtual ~ImportOptions() {}
  19. /************************************************************************/
  20. /* SERIALIZATION */
  21. /************************************************************************/
  22. public:
  23. friend class ImportOptionsRTTI;
  24. static RTTITypeBase* getRTTIStatic();
  25. RTTITypeBase* getRTTI() const override;
  26. };
  27. /** @} */
  28. }