14 lines
337 B
C#
14 lines
337 B
C#
|
/*
|
||
|
* @author Valentin Simonov / http://va.lent.in/
|
||
|
*/
|
||
|
|
||
|
using UnityEngine;
|
||
|
|
||
|
namespace TouchScript.Utils.Attributes
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// <para>An attribute to use with ToggleLeft item drawer.</para>
|
||
|
/// <para><b>For internal use only!</b></para>
|
||
|
/// </summary>
|
||
|
public class ToggleLeftAttribute : PropertyAttribute {}
|
||
|
}
|