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