// SPDX-FileCopyrightText: 2023 Unity Technologies and the glTFast authors
// SPDX-License-Identifier: Apache-2.0
using System.Threading.Tasks;
namespace GLTFast
{
///
/// Defer agent that always decides to continue
/// processing
///
///
public class UninterruptedDeferAgent : IDeferAgent
{
///
public bool ShouldDefer()
{
return false;
}
///
public bool ShouldDefer(float duration)
{
return false;
}
#pragma warning disable 1998
///
public async Task BreakPoint() { }
///
public async Task BreakPoint(float duration) { }
#pragma warning restore 1998
}
}