Files
BABA_YAGA/Assets/Scripts/Player/Generic/Attributes/vToggleOptionAttribute.cs

15 lines
435 B
C#
Raw Normal View History

2026-05-30 09:16:35 +07:00
using System;
using UnityEngine;
[AttributeUsage(AttributeTargets.Field, AllowMultiple = true, Inherited = true)]
public class vToggleOptionAttribute : PropertyAttribute
{
public string label, falseValue, trueValue;
public vToggleOptionAttribute(string label = "", string falseValue = "No", string trueValue = "Yes")
{
this.label = label;
this.falseValue = falseValue;
this.trueValue = trueValue;
}
}