using UnityEngine; namespace KitsuneCafe.Sys.Attributes { public class AnimatorControllerPropertyAttribute : PropertyAttribute { public string AnimatorControllerField { get; private set; } public AnimatorControllerPropertyAttribute(string animatorControllerField = null) { AnimatorControllerField = animatorControllerField; } } }