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