servicepoint-tanks/TanksServer/GameLogic/PlayersConfiguration.cs

8 lines
157 B
C#
Raw Normal View History

2024-04-11 20:48:21 +02:00
namespace TanksServer.GameLogic;
public class PlayersConfiguration
{
public int SpawnDelayMs { get; set; }
2024-04-12 14:28:57 +02:00
public int IdleTimeoutMs { get; set; }
2024-04-11 20:48:21 +02:00
}