7 lines
97 B
C#
7 lines
97 B
C#
namespace Syntriax.Engine.Core.Abstract;
|
|
|
|
public interface ICoroutineYield
|
|
{
|
|
bool Yield();
|
|
}
|