| 123456789101112131415161718 |
- //********************************** 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 library window.</summary>
- public enum LibraryWindowIcon
- {
- Home = 0,
- Up = 1,
- Clear = 2,
- Options = 3
- }
- }
|