// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
namespace Microsoft.MixedReality.Toolkit
{
public interface IMixedRealityCapabilityCheck
{
///
/// Checks to see if one or more registered data providers supports the requested capability
/// on the current platform.
///
/// The capability to check.
/// True if the capability is supported, false otherwise.
bool CheckCapability(MixedRealityCapability capability);
}
}