Files
RobustToolbox/Robust.Shared/Animations/AnimatableAttribute.cs
2020-01-09 00:13:37 +01:00

15 lines
386 B
C#

using System;
using JetBrains.Annotations;
namespace Robust.Shared.Animations
{
/// <summary>
/// Specifies that a property can be animated, or that a method can be called by animations.
/// </summary>
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Method)]
[MeansImplicitUse]
public sealed class AnimatableAttribute : Attribute
{
}
}