fish-station/Content.Shared/_Sunrise/Animations/ContainerInteractionAnimationComponent.cs

10 lines
329 B
C#

using Robust.Shared.GameStates;
namespace Content.Shared._Sunrise.Animations;
[RegisterComponent, NetworkedComponent]
public sealed partial class ContainerInteractionAnimationComponent : Component
{
[DataField, ViewVariables] public float Variation = 0.2f;
[DataField, ViewVariables] public float Duration = 0.2f;
}