Coroutine/Coroutine/IWait.cs

18 lines
231 B
C#
Raw Normal View History

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