mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
15 lines
386 B
C#
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
|
|
{
|
|
}
|
|
}
|