ImportOptions.editor.generated.cs 747 B

123456789101112131415161718192021222324252627
  1. //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
  2. //************** Copyright (c) 2016-2019 Marko Pintera ([email protected]). All rights reserved. *******************//
  3. using System;
  4. using System.Runtime.CompilerServices;
  5. using System.Runtime.InteropServices;
  6. using bs;
  7. namespace bs.Editor
  8. {
  9. /** @addtogroup Importer
  10. * @{
  11. */
  12. /// <summary>
  13. /// Base class for creating import options from. Import options are specific for each importer and control how is data
  14. /// imported.
  15. /// </summary>
  16. [ShowInInspector]
  17. public partial class ImportOptions : ScriptObject
  18. {
  19. private ImportOptions(bool __dummy0) { }
  20. protected ImportOptions() { }
  21. }
  22. /** @} */
  23. }