Files
BABA_YAGA/Assets/Invector-3rdPersonController/Basic Locomotion/Scripts/Generic/Utils/vSelectableStringAttribute.cs
2026-05-30 09:16:35 +07:00

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;
}
}