9 lines
124 B
C#
9 lines
124 B
C#
|
using System.Collections;
|
||
|
|
||
|
namespace Syntriax.Engine.Core.Abstract;
|
||
|
|
||
|
public interface ICoroutineYield
|
||
|
{
|
||
|
bool Yield();
|
||
|
}
|