private void OnEnable()
    {
        info.Clear();
        GameEvents.Networking.NetworkInfoEnabled.SafeInvoke(info);

        if (coroutine != null)
        {
            StopCoroutine(coroutine);
        }

        coroutine = StartCoroutine(UpdateCoroutine());
    }