mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-05-14 22:50:08 -05:00
Co-authored-by: ousttrue <ousttrue@gmail.com> Co-authored-by: TORISOUP <tori.birdstrike@gmail.com> Co-authored-by: yutopp <yutopp@gmail.com>
10 lines
157 B
C#
10 lines
157 B
C#
using System;
|
|
|
|
namespace DepthFirstScheduler
|
|
{
|
|
public interface IScheduler : IDisposable
|
|
{
|
|
void Enqueue(TaskChain item);
|
|
}
|
|
}
|