Files
BABA_YAGA/Assets/Scripts/Player/MeleeWeapon/vEnumFlagAttribute.cs

17 lines
397 B
C#
Raw Normal View History

2026-05-30 09:16:35 +07:00
using UnityEngine;
namespace Invector
{
[System.AttributeUsage(System.AttributeTargets.Field,AllowMultiple = true,Inherited = true)]
public class vEnumFlagAttribute : PropertyAttribute
{
public string enumName;
public vEnumFlagAttribute() { }
public vEnumFlagAttribute(string name)
{
enumName = name;
}
}
}