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