Syntriax.Engine/Engine.Core/Abstract/ICoroutineYield.cs

9 lines
124 B
C#
Raw Normal View History

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