Files
XCharts/Runtime/Internal/Attributes/DefaultAnimationAttribute.cs

15 lines
339 B
C#
Raw Normal View History

2021-12-12 18:05:26 +08:00
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;
}
}
}