| 123456789101112131415161718192021222324252627282930313233 |
- //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
- //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
- #pragma once
- #include "BsCorePrerequisites.h"
- #include "BsIReflectable.h"
- namespace BansheeEngine
- {
- /** @addtogroup Importer
- * @{
- */
- /**
- * Base class for creating import options from. Import options are specific for each importer and control how is data
- * imported.
- */
- class BS_CORE_EXPORT ImportOptions : public IReflectable
- {
- public:
- virtual ~ImportOptions() {}
- /************************************************************************/
- /* SERIALIZATION */
- /************************************************************************/
- public:
- friend class ImportOptionsRTTI;
- static RTTITypeBase* getRTTIStatic();
- RTTITypeBase* getRTTI() const override;
- };
- /** @} */
- }
|