EditorIcon.generated.cs 534 B

1234567891011121314151617
  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 used in various areas throughout the editor.</summary>
  10. public enum EditorIcon
  11. {
  12. X = 0,
  13. Component = 1,
  14. SceneObject = 2
  15. }
  16. }