Files
2025-03-09 12:24:30 -07:00

14 lines
238 B
C#

namespace Zennysoft.Ma.Adapter;
public partial class PlayerLogic
{
public record Settings
{
public float MoveSpeed { get; set; }
public float RotationSpeed { get; set; }
public float Acceleration { get; set; }
}
}