Archived
forked from RDTKEditor/RDTKEditor
11 lines
235 B
C#
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
|
|
{
|
|
}
|
|
}
|