void Client_RemovePlayer(NetworkPlayer view)
{
MPPLayer temppl = null;
foreach(MPPLayer pl in PlayerList)
{
temppl = pl;
}
}
if( temppl != null)
{
PlayerList.Remove(temppl);
}
public class MPPLayer
{
public string PlayerName = "";
public NetworkPlayer PlayerNetwork;