33 lines
594 B
C#
33 lines
594 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using WebSocketSharp;
|
|
using WebSocketSharp.Server;
|
|
|
|
namespace CircleScape {
|
|
class Server : WebSocketBehavior {
|
|
Server() {
|
|
|
|
}
|
|
|
|
protected override void OnOpen() {
|
|
|
|
}
|
|
|
|
protected override void OnMessage(MessageEventArgs e) {
|
|
|
|
}
|
|
|
|
protected override void OnClose(CloseEventArgs e) {
|
|
|
|
}
|
|
}
|
|
|
|
class EntryPoint {
|
|
static void Main(string[] args) {
|
|
|
|
}
|
|
}
|
|
}
|