protected void Awake() { if (Instance != null && Instance != this) { Destroy(gameObject); } else { Instance = this; } }
protected void Start() { IpAddress.text = "127.0.0.1"; PortNumber.text = "1337"; _networkManager = NetworkingManager.Instance; }