added: stress testing

This commit is contained in:
2022-06-23 20:45:57 +04:00
parent 05c8904601
commit 189278e17c
15 changed files with 425 additions and 192 deletions
@@ -17,12 +17,12 @@ namespace Game.Source
public override void OnPlayerJoined(Player player)
{
_logger.Info($"Player({player.PlayerName}) joined to Room({GameRoom.Id})");
// _logger.Info($"Player({player.PlayerName}) joined to Room({GameRoom.Id})");
}
public override void OnPlayerLeaved(Player player)
{
_logger.Info($"Player({player.PlayerName}) left from Room({GameRoom.Id})");
// _logger.Info($"Player({player.PlayerName}) left from Room({GameRoom.Id})");
}
}
}