|
|
@@ -22,16 +22,16 @@ namespace BansheeEngine
|
|
|
virtual ~SLImporter();
|
|
|
|
|
|
/** @copydoc SpecificImporter::isExtensionSupported */
|
|
|
- virtual bool isExtensionSupported(const WString& ext) const override;
|
|
|
+ bool isExtensionSupported(const WString& ext) const override;
|
|
|
|
|
|
/** @copydoc SpecificImporter::isMagicNumberSupported */
|
|
|
- virtual bool isMagicNumberSupported(const UINT8* magicNumPtr, UINT32 numBytes) const override;
|
|
|
+ bool isMagicNumberSupported(const UINT8* magicNumPtr, UINT32 numBytes) const override;
|
|
|
|
|
|
/** @copydoc SpecificImporter::import */
|
|
|
- virtual SPtr<Resource> import(const Path& filePath, SPtr<const ImportOptions> importOptions) override;
|
|
|
+ SPtr<Resource> import(const Path& filePath, SPtr<const ImportOptions> importOptions) override;
|
|
|
|
|
|
/** @copydoc SpecificImporter::createImportOptions */
|
|
|
- virtual SPtr<ImportOptions> createImportOptions() const override;
|
|
|
+ SPtr<ImportOptions> createImportOptions() const override;
|
|
|
};
|
|
|
|
|
|
/** @} */
|