using System.Collections; using System.Collections.Generic; using UnityEngine; public class OtherUserList { private OtherUserList _instance; public OtherUserList _Instance { get { if (_instance == null) { _instance = new OtherUserList(); } return _instance; } } public List otherUserList = new List(); public List UpdateOtherList() { return otherUserList; } }