mirror of
https://github.com/DCFApixels/Unity-DebugX.git
synced 2025-09-18 01:54:37 +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;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|