servicepoint-tanks/TanksServer/GameLogic/GameRules.cs
2024-04-17 19:34:19 +02:00

9 lines
178 B
C#

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