Files
XCharts/Runtime/Internal/Attributes/DefaultAnimationAttribute.cs
2022-01-05 21:40:48 +08:00

15 lines
339 B
C#

using System;
namespace XCharts
{
[AttributeUsage(AttributeTargets.Class, AllowMultiple = true)]
public sealed class DefaultAnimationAttribute : Attribute
{
public readonly AnimationType type;
public DefaultAnimationAttribute(AnimationType handler)
{
this.type = handler;
}
}
}