//********************************** Banshee Engine (www.banshee3d.com) **************************************************// //************** Copyright (c) 2016-2019 Marko Pintera (marko.pintera@gmail.com). All rights reserved. *******************// namespace bs.Editor { /// /// Contains information about the order of a field when displayed in the inspector /// public sealed class InspectableFieldOrderStyle : InspectableFieldStyle { public InspectableFieldOrderStyle(int index) { this.Index = index; } /// /// Index that determines the order relative to other fields. Lower index means the field will be displayed before /// the fields with higher index. /// public int Index { get; set; } } }