This repository has been archived on 2026-07-13. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
servicepoint-tanks/TanksServer/GameLogic/GameRulesConfiguration.cs
2024-04-16 21:35:57 +02:00

6 lines
130 B
C#

namespace TanksServer.GameLogic;
public class GameRulesConfiguration
{
public bool DestructibleWalls { get; set; } = true;
}