mirror of
https://github.com/Mukheem/TwinTurbine.git
synced 2025-02-08 04:54:19 +01:00
9 lines
217 B
C#
9 lines
217 B
C#
namespace Proxima
|
|
{
|
|
internal interface ProximaServer
|
|
{
|
|
void Start(string displayName, string password);
|
|
void Stop();
|
|
bool TryGetMessage(out (ProximaConnection, string) message);
|
|
}
|
|
} |