namespace LitMotion { internal sealed class ManualMotionScheduler : IMotionScheduler { public double Time => ManualMotionDispatcher.Time; public MotionHandle Schedule(ref MotionData data, ref MotionCallbackData callbackData) where TValue : unmanaged where TOptions : unmanaged, IMotionOptions where TAdapter : unmanaged, IMotionAdapter { return ManualMotionDispatcher.Schedule(data, callbackData); } } }