Files
BH3/Assets/Plugins/Assembly-CSharp-firstpass/BehaviorDesigner/Runtime/Tasks/ObjectDrawerAttribute.cs
2025-08-13 09:26:42 +08:00

10 lines
206 B
C#

using System;
namespace BehaviorDesigner.Runtime.Tasks
{
[AttributeUsage(AttributeTargets.Field, Inherited = true, AllowMultiple = false)]
public abstract class ObjectDrawerAttribute : Attribute
{
}
}