14 lines
250 B
C#
14 lines
250 B
C#
namespace Zennysoft.Game.Ma.Implementation;
|
|
|
|
public partial class PlayerLogic
|
|
{
|
|
public record Settings
|
|
{
|
|
public float MoveSpeed { get; set; }
|
|
|
|
public float RotationSpeed { get; set; }
|
|
|
|
public float Acceleration { get; set; }
|
|
}
|
|
}
|