EditorToggleIcon.generated.cs 543 B

123456789101112131415
  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, for toggleable elements.</summary>
  10. public enum EditorToggleIcon
  11. {
  12. AnimateProperty = 0
  13. }
  14. }