using System.Numerics;
namespace Content.Client.Animations;
///
/// Entities with this component tracks the user's world position every frame.
///
[RegisterComponent]
public sealed partial class TrackUserComponent : Component
{
public EntityUid? User;
///
/// Offset in the direction of the entity's rotation.
///
public Vector2 Offset = Vector2.Zero;
}