/* * @author Valentin Simonov / http://va.lent.in/ */ using UnityEngine; namespace TouchScript.Utils.Attributes { /// /// An attribute to use with NullToggle item drawer. /// For internal use only! /// public class NullToggleAttribute : PropertyAttribute { /// /// Int value /// public int NullIntValue = 0; /// /// Float value /// public float NullFloatValue = 0f; /// /// Object value /// public Object NullObjectValue = null; } }