6
StarHorizon_Public/Content.Client/Animations/EntityPickupAnimationComponent.cs
2026-01-24 12:49:55 +03:00

12 lines
340 B
C#

namespace Content.Client.Animations;
/// <summary>
/// Applied to client-side clone entities to animate them approaching the player that
/// picked up the original entity.
/// </summary>
[RegisterComponent]
[Access(typeof(EntityPickupAnimationSystem))]
public sealed partial class EntityPickupAnimationComponent : Component
{
}