This repository has been archived on 2025-10-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files

11 lines
235 B
C#

namespace RhythmBase.Components.Easing
{
/// <summary>
/// An attribute to mark properties for easing functions.
/// </summary>
[AttributeUsage(AttributeTargets.Property)]
public class EasePropertyAttribute : Attribute
{
}
}