forked from absh8989/TwinTurbine
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);
|
|
}
|
|
} |