Aimbot-ParallelEnv/Assets/XCharts/Runtime/Internal/Attributes/IgnoreDocAttribute.cs

12 lines
210 B
C#
Raw Normal View History

2022-10-25 19:07:39 +00:00
using System;
namespace XCharts.Runtime
{
[AttributeUsage(AttributeTargets.Field, AllowMultiple = false)]
public class IgnoreDoc : Attribute
{
public IgnoreDoc()
{
}
}
}