b15f3b7391
Need to implement: Slider and logic for it and UI and the logic for that as well.
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);
|
|
}
|
|
} |