using System.Numerics;
namespace Content.Client.Eye;
///
/// Component for keeping track of client-side eye lerping. This component should only be added or removed via the .
///
[RegisterComponent]
public sealed partial class LerpingEyeComponent : Component
{
///
/// False if this eye was automatically added when a player was attached to this entity.
///
public bool ManuallyAdded = false;
[ViewVariables]
public Angle LastRotation;
[ViewVariables]
public Angle TargetRotation;
[ViewVariables]
public Vector2 LastZoom;
[ViewVariables]
public Vector2 TargetZoom;
}