Files
LuckerGame/code/EntityComponents/Lucker/LuckerClientInput.cs
2023-08-02 19:47:53 -04:00

16 lines
368 B
C#

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