cull(engine-cleanup): pass-9 cascade round 1 after DialogBase stub

This commit is contained in:
gamer147
2026-07-03 23:23:59 -04:00
parent 6de5f03956
commit 4e3bb6f88f
15 changed files with 4 additions and 278 deletions

View File

@@ -289,29 +289,6 @@ public class NetworkManager : MonoBehaviour, IManager
}
}
public IEnumerator Retry()
{
if (lastRequestTask == null)
{
yield break;
}
if (connectCoroutine != null)
{
StopConnectCoroutine();
}
connectCoroutine = Connect(showErrorDialog: true);
yield return StartCoroutine(connectCoroutine);
}
public void GoToStore()
{
lastRequestTask.GotoStore();
ClearLastRequestTask();
}
private void disposeUnityWebRequest(UnityWebRequest unityWebRequest)
{
unityWebRequest.Dispose();