mirror of
https://github.com/Mukheem/TwinTurbine.git
synced 2025-01-20 04:51:50 +01:00
10 lines
164 B
C#
10 lines
164 B
C#
using System.IO;
|
|
|
|
namespace Proxima
|
|
{
|
|
internal interface ProximaConnection
|
|
{
|
|
bool Open { get; }
|
|
void SendMessage(MemoryStream data);
|
|
}
|
|
} |