13 lines
387 B
C#
13 lines
387 B
C#
|
|
using UnityEngine;
|
|||
|
|
[System.AttributeUsage(System.AttributeTargets.Field, AllowMultiple = true)]
|
|||
|
|
public class vSelectableStringAttribute : PropertyAttribute
|
|||
|
|
{
|
|||
|
|
public string tittle;
|
|||
|
|
public string selectableText;
|
|||
|
|
public vSelectableStringAttribute(string tittle, string selectableText)
|
|||
|
|
{
|
|||
|
|
this.tittle = tittle;
|
|||
|
|
this.selectableText = selectableText;
|
|||
|
|
}
|
|||
|
|
}
|