LibraryWindowIcon.generated.cs 546 B

123456789101112131415161718
  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. /// <summary>Types of icons that may be displayed in the library window.</summary>
  10. public enum LibraryWindowIcon
  11. {
  12. Home = 0,
  13. Up = 1,
  14. Clear = 2,
  15. Options = 3
  16. }
  17. }