mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-05-11 13:04:17 -05:00
8 lines
114 B
C#
8 lines
114 B
C#
namespace UniTask
|
|
{
|
|
public interface IScheduler
|
|
{
|
|
void Enqueue(TaskChain item);
|
|
}
|
|
}
|