BizHawk/BizHawk.Client.ApiHawk/Interfaces/Api/IApiContainer.cs

11 lines
184 B
C#

using System;
using System.Collections.Generic;
namespace BizHawk.Client.ApiHawk
{
public interface IApiContainer
{
Dictionary<Type, IExternalApi> Libraries { get; set; }
}
}