Created method to remove a player from a game
This commit is contained in:
parent
5e21947870
commit
bc0bfbea0f
@ -62,6 +62,15 @@ public class Game // TODO handle disconnects and reconnects
|
|||||||
return true;
|
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)
|
private void SetSpawn(IPlayer player)
|
||||||
{
|
{
|
||||||
if (player.PacMan.SpawnPosition is not null) return;
|
if (player.PacMan.SpawnPosition is not null) return;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user