using Sandbox; namespace LuckerGame.EntityComponents.Lucker; /// /// A component for capturing and passing around a client's input for an attached Lucker /// public class LuckerClientInput : EntityComponent { [ClientInput] public Vector3 InputDirection { get; set; } [ClientInput] public Angles ViewAngles { get; set; } }