| 12345678910111213141516171819202122232425 |
- //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
- //************** Copyright (c) 2016-2019 Marko Pintera ([email protected]). All rights reserved. *******************//
- using System;
- using System.Runtime.CompilerServices;
- using System.Runtime.InteropServices;
- using bs;
- namespace bs.Editor
- {
- /// <summary>Types of icons that may be displayed in the inspector window.</summary>
- public enum InspectorWindowIcon
- {
- Apply = 8,
- Create = 0,
- Clone = 1,
- Clear = 2,
- Resize = 3,
- Delete = 4,
- MoveUp = 5,
- MoveDown = 6,
- Edit = 7,
- Add = 9,
- Cancel = 10
- }
- }
|