holopy3/Assets/UniGLTF/DepthFirstScheduler/Scheduler.cs

10 lines
148 B
C#
Raw Permalink Normal View History

2021-01-28 12:07:52 +00:00
using System;
namespace DepthFirstScheduler
{
public interface IScheduler : IDisposable
{
void Enqueue(TaskChain item);
}
}