14 lines
238 B
C#
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; }
|
|
}
|
|
}
|