mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-05-09 12:11:35 -05:00
10 lines
148 B
C#
10 lines
148 B
C#
using System;
|
|
|
|
namespace DepthFirstScheduler
|
|
{
|
|
public interface IScheduler : IDisposable
|
|
{
|
|
void Enqueue(TaskChain item);
|
|
}
|
|
}
|