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