rename UniTask to DepthFirstScheduler

This commit is contained in:
ousttrue
2018-08-09 12:44:08 +09:00
parent 000248e729
commit af96524b4a
27 changed files with 16 additions and 19 deletions

View File

@@ -0,0 +1,9 @@
using System;
namespace DepthFirstScheduler
{
public interface IScheduler : IDisposable
{
void Enqueue(TaskChain item);
}
}