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

15 lines
347 B
C#
Raw Normal View History

2021-12-12 18:05:26 +08:00
using System;
2022-02-19 22:37:57 +08:00
namespace XCharts.Runtime
2021-12-12 18:05:26 +08:00
{
[AttributeUsage(AttributeTargets.Class, AllowMultiple = true)]
public sealed class DefaultAnimationAttribute : Attribute
{
public readonly AnimationType type;
public DefaultAnimationAttribute(AnimationType handler)
{
this.type = handler;
}
}
}