Пример #1
0
        Queue <Action> actions = new Queue <Action>();       // 非同期タスク

        private GameServer(string address)
        {
            this.address = address;
            ws           = new WebSocketServer(address);
            ws.AddWebSocketService <WebSocketSampleService>("/");
        }