Files
BABA_YAGA/Assets/Scripts/Player/Generic/Utils/vSelectableStringAttribute.cs
2026-06-04 10:42:23 +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;
}
}