Created method to remove a player from a game

This commit is contained in:
Martin Berg Alstad 2023-07-20 15:00:03 +02:00
parent 5e21947870
commit bc0bfbea0f

View File

@ -62,6 +62,15 @@ public class Game // TODO handle disconnects and reconnects
return true;
}
public IPlayer? RemovePlayer(string username)
{
var index = Players.FindIndex(p => p.Username == username);
if (index == -1) return null;
var removedPlayer = Players[index];
Players.RemoveAt(index);
return removedPlayer;
}
private void SetSpawn(IPlayer player)
{
if (player.PacMan.SpawnPosition is not null) return;