//********************************** Banshee Engine (www.banshee3d.com) **************************************************// //**************** Copyright (c) 2016 Marko Pintera (marko.pintera@gmail.com). All rights reserved. **********************// using System; namespace BansheeEditor { /// /// Contains boolean information about a field style. /// [Flags] public enum InstectableFieldStyleFlags { None = 0, UseSlider = 1 << 0, UseLayerMask = 1 << 1 } /// /// Contains all the information about a field style. /// public class InspectableFieldStyleInfo { /// /// Information about the field range. /// public InspectableFieldRangeStyle RangeStyle; /// /// Information about the field stepping. /// public InspectableFieldStepStyle StepStyle; /// /// Boolean information about the field. /// public InstectableFieldStyleFlags StyleFlags; /// /// Creates an empty set of information about a field style. /// public InspectableFieldStyleInfo() { } } }