删除 UnityWaitOSRequest.cs

This commit is contained in:
sin365 2024-09-26 22:44:29 +08:00
parent 34e00f9e1b
commit 0b7dff6bbf

View File

@ -1,19 +0,0 @@
using OnlySocketHttp;
using UnityEngine;
class UnityWaitOSRequest : CustomYieldInstruction
{
RequestAsync mReqAsync;
public UnityWaitOSRequest(RequestAsync reqAsync)
{
mReqAsync = reqAsync;
}
~UnityWaitOSRequest()
{
mReqAsync = null;
}
public override bool keepWaiting
{
get { return !mReqAsync.isDone; }
}
}