mirror of
https://github.com/DCFApixels/Unity-DebugX.git
synced 2025-09-17 17:34:35 +08:00
14 lines
336 B
C#
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;
|
|
}
|
|
}
|
|
} |