BsImportOptions.h 700 B

12345678910111213141516171819202122232425
  1. #pragma once
  2. #include "BsCorePrerequisites.h"
  3. #include "BsIReflectable.h"
  4. namespace BansheeEngine
  5. {
  6. /**
  7. * @brief Base class for creating import options from. Import options
  8. * are specific for each importer and control how is data imported.
  9. */
  10. class BS_CORE_EXPORT ImportOptions : public IReflectable
  11. {
  12. public:
  13. virtual ~ImportOptions() {}
  14. /************************************************************************/
  15. /* SERIALIZATION */
  16. /************************************************************************/
  17. public:
  18. friend class ImportOptionsRTTI;
  19. static RTTITypeBase* getRTTIStatic();
  20. virtual RTTITypeBase* getRTTI() const override;
  21. };
  22. }