servicepoint-tanks/TanksServer/GameLogic/GameRules.cs

9 lines
178 B
C#
Raw Normal View History

namespace TanksServer.GameLogic;
2024-04-17 19:34:19 +02:00
internal sealed class GameRules
{
public bool DestructibleWalls { get; set; } = true;
2024-04-17 19:34:19 +02:00
public double PowerUpSpawnChance { get; set; }
}