Unity-DebugX/Runtime/Utils/DebugXDrawGizmoAttribute.cs
DCFApixels c2794bf715 stash
2025-02-28 17:06:43 +08:00

14 lines
336 B
C#

using System;
namespace DCFApixels.DebugXCore
{
[AttributeUsage(AttributeTargets.Method, Inherited = false, AllowMultiple = false)]
public sealed class DebugXDrawGizmoAttribute : Attribute
{
public Type Type;
public DebugXDrawGizmoAttribute(Type type)
{
Type = type;
}
}
}