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

15 lines
347 B
C#
Raw Normal View History

2022-10-25 19:07:39 +00:00
using System;
namespace XCharts.Runtime
{
[AttributeUsage(AttributeTargets.Class, AllowMultiple = true)]
public sealed class DefaultAnimationAttribute : Attribute
{
public readonly AnimationType type;
public DefaultAnimationAttribute(AnimationType handler)
{
this.type = handler;
}
}
}