using System;
namespace Torch.API.Managers
{
public interface IDependencyProvider
{
///
/// Gets the manager that provides the given type. If there is no such manager, returns null.
///
/// Type of manager
/// manager, or null if none exists
IManager GetManager(Type type);
}
}