BizHawk/BizHawk.Client.Common/Api/EmuHawkInterfaces/IComm.cs

12 lines
246 B
C#

namespace BizHawk.Client.Common
{
public interface IComm : IExternalApi
{
Communication.HttpCommunication HTTP { get; }
Communication.MemoryMappedFiles MemoryMappedFiles { get; }
Communication.SocketServer SocketServer { get; }
}
}