using System.Collections;
using System.Collections.Generic;
public class RoomCustomData
public TeamCustomData team1;
public TeamCustomData team2;
public class TeamCustomData
// Stores playerIds, so players knows which team they are on.
public List<string> players = new List<string>();