using System.Collections; using System.Collections.Generic; using UnityEngine; namespace YKMoon { public class MMDropdownAttribute : PropertyAttribute { public readonly object[] DropdownValues; public MMDropdownAttribute(params object[] dropdownValues) { DropdownValues = dropdownValues; } } }