servicepoint-tanks/TanksServer/Models/PlayerControls.cs

10 lines
263 B
C#
Raw Normal View History

2024-04-10 22:03:36 +02:00
namespace TanksServer.Models;
internal sealed class PlayerControls
{
public bool Forward { get; set; }
public bool Backward { get; set; }
public bool TurnLeft { get; set; }
public bool TurnRight { get; set; }
public bool Shoot { get; set; }
}