9 lines
124 B
C#
Raw Permalink Normal View History

using System.Collections;
namespace Syntriax.Engine.Core.Abstract;
public interface ICoroutineYield
{
bool Yield();
}