servicepoint-tanks/TanksServer/GameLogic/GameRules.cs
2024-04-19 13:32:41 +02:00

13 lines
302 B
C#

namespace TanksServer.GameLogic;
internal sealed class GameRules
{
public bool DestructibleWalls { get; set; } = true;
public double PowerUpSpawnChance { get; set; }
public int MaxPowerUpCount { get; set; } = int.MaxValue;
public int BulletTimeoutMs { get; set; } = int.MaxValue;
}