sockscape/server/Server.cs

34 lines
602 B
C#
Raw Normal View History

2017-04-17 18:50:18 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WebSocketSharp;
using WebSocketSharp.Server;
namespace CircleScape {
2017-04-19 12:10:47 +00:00
class Connection : WebSocketBehavior {
Connection() {
2017-04-17 18:50:18 +00:00
}
protected override void OnOpen() {
2017-04-18 21:00:41 +00:00
if()
2017-04-17 18:50:18 +00:00
}
protected override void OnMessage(MessageEventArgs e) {
2017-04-18 21:00:41 +00:00
2017-04-17 18:50:18 +00:00
}
protected override void OnClose(CloseEventArgs e) {
2017-04-18 04:59:38 +00:00
2017-04-17 18:50:18 +00:00
}
}
2017-04-19 12:10:47 +00:00
class Server {
2017-04-17 18:50:18 +00:00
static void Main(string[] args) {
}
}
}