servicepoint-tanks/TanksServer/GameLogic/TanksConfiguration.cs

9 lines
242 B
C#
Raw Normal View History

2024-04-11 20:48:21 +02:00
namespace TanksServer.GameLogic;
public class TanksConfiguration
{
public double MoveSpeed { get; set; }
public double TurnSpeed { get; set; }
public double ShootDelayMs { get; set; }
public double BulletSpeed { get; set; }
}