InspectorWindowIcon.generated.cs 649 B

12345678910111213141516171819202122232425
  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 inspector window.</summary>
  10. public enum InspectorWindowIcon
  11. {
  12. Apply = 8,
  13. Create = 0,
  14. Clone = 1,
  15. Clear = 2,
  16. Resize = 3,
  17. Delete = 4,
  18. MoveUp = 5,
  19. MoveDown = 6,
  20. Edit = 7,
  21. Add = 9,
  22. Cancel = 10
  23. }
  24. }