Coroutine/Coroutine/IWait.cs
2019-11-20 11:30:28 +01:00

18 lines
231 B
C#

namespace Coroutine {
public interface IWait {
WaitType GetWaitType();
bool Tick(double deltaSeconds);
bool OnEvent(Event evt);
}
public enum WaitType {
Tick,
Event
}
}