| 123456789101112131415161718192021222324252627 |
- //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
- //************** Copyright (c) 2016-2019 Marko Pintera ([email protected]). All rights reserved. *******************//
- using System;
- using System.Runtime.CompilerServices;
- using System.Runtime.InteropServices;
- using bs;
- namespace bs.Editor
- {
- /** @addtogroup Importer
- * @{
- */
- /// <summary>
- /// Base class for creating import options from. Import options are specific for each importer and control how is data
- /// imported.
- /// </summary>
- [ShowInInspector]
- public partial class ImportOptions : ScriptObject
- {
- private ImportOptions(bool __dummy0) { }
- protected ImportOptions() { }
- }
- /** @} */
- }
|