Files

10 lines
293 B
C#
Raw Permalink Normal View History

2025-06-03 02:42:28 -04:00
using UnityEngine;
namespace UniRx
{
internal static class YieldInstructionCache
{
public static readonly WaitForEndOfFrame WaitForEndOfFrame = new WaitForEndOfFrame();
public static readonly WaitForFixedUpdate WaitForFixedUpdate = new WaitForFixedUpdate();
}
}