JacobTech
d8fbf281d0
I moved the two server types to their own classes to prevent API calls to a server, not of that type.
12 lines
222 B
C#
12 lines
222 B
C#
using System;
|
|
using WebSocketSharp;
|
|
|
|
namespace Luski.net;
|
|
|
|
public partial class Server
|
|
{
|
|
internal void ServerOut_OnError(object? sender, ErrorEventArgs e)
|
|
{
|
|
this.Exception(new Exception(e.Message));
|
|
}
|
|
} |