Files
back_cantanBuilding/LocalPackages/com.neuecc.unirx/Scripts/UnityEngineBridge/YieldInstructionCache.cs
2026-05-26 16:15:54 +08:00

10 lines
293 B
C#

using UnityEngine;
namespace UniRx
{
internal static class YieldInstructionCache
{
public static readonly WaitForEndOfFrame WaitForEndOfFrame = new WaitForEndOfFrame();
public static readonly WaitForFixedUpdate WaitForFixedUpdate = new WaitForFixedUpdate();
}
}