嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):78630559
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
多人五子棋
.
├── GameHall_Client
│ ├── GameHall_Client
│ │ ├── App.config
│ │ ├── Chess_Helper.cs
│ │ ├── Chess_Play.Designer.cs
│ │ ├── Chess_Play.cs
│ │ ├── CrossThreadCall.cs
│ │ ├── Form1.Designer.cs
│ │ ├── Form1.cs
│ │ ├── GameHall_Client.csproj
│ │ ├── Game_Client.cs
│ │ ├── Game_Control.cs
│ │ ├── Game_Globa.cs
│ │ ├── Game_Hall.Designer.cs
│ │ ├── Game_Hall.cs
│ │ ├── Game_Helper.cs
│ │ ├── Game_Login.Designer.cs
│ │ ├── Game_Login.cs
│ │ ├── Game_UpdateInfo.cs
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── Resource.Designer.cs
│ │ ├── Resource.resx
│ │ ├── Resources
│ │ │ ├── bai.png
│ │ │ ├── fit_bai.png
│ │ │ ├── fit_hei.png
│ │ │ ├── g-bai.png
│ │ │ ├── g-hei.png
│ │ │ ├── hei.png
│ │ │ └── pan.png
│ │ ├── Serializer.cs
│ │ ├── StringEncrypt.cs
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ │ ├── GameHall_Client.exe
│ │ │ │ ├── GameHall_Client.exe.config
│ │ │ │ ├── GameHall_Client.pdb
│ │ │ │ └── Websocket-Sharp.dll
│ │ │ └── Release
│ │ └── obj
│ │ └── Debug
│ └── GameHall_Client.sln
├── GameHall_Server
│ ├── GameHall_Server
│ │ ├── App.config
│ │ ├── Form1.Designer.cs
│ │ ├── Form1.cs
│ │ ├── GameHall_DataBase.cs
│ │ ├── GameHall_Globa.cs
│ │ ├── GameHall_Helper.cs
│ │ ├── GameHall_Server.csproj
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── Serializer.cs
│ │ ├── Server.cs
│ │ ├── StringEncrypt.cs
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ │ ├── GameHall_Server.exe
│ │ │ │ ├── GameHall_Server.exe.config
│ │ │ │ ├── GameHall_Server.pdb
│ │ │ │ ├── UserData.ldb
│ │ │ │ ├── UserData.mdb
│ │ │ │ └── Websocket-Sharp.dll
│ │ │ └── Release
│ │ └── obj
│ │ └── Debug
│ └── GameHall_Server.sln
├── Wpf_Client
│ ├── Wpf_Client
│ │ ├── App.config
│ │ ├── App.xaml
│ │ ├── App.xaml.cs
│ │ ├── Chess_Play.xaml
│ │ ├── Chess_Play.xaml.cs
│ │ ├── Game_Client.cs
│ │ ├── Game_Global.cs
│ │ ├── Game_Helper.cs
│ │ ├── Game_Login.xaml
│ │ ├── Game_Login.xaml.cs
│ │ ├── Game_Room.xaml
│ │ ├── Game_Room.xaml.cs
│ │ ├── Game_UpdateInfo.cs
│ │ ├── Images
│ │ │ ├── 1-min.png
│ │ │ ├── 10-min.png
│ │ │ ├── 11-min.png
│ │ │ ├── 12-min.png
│ │ │ ├── 13-min.png
│ │ │ ├── 14-min.png
│ │ │ ├── 15-min.png
│ │ │ ├── 16-min.png
│ │ │ ├── 2-min.png
│ │ │ ├── 3-min.png
│ │ │ ├── 4-min.png
│ │ │ ├── 5-min.png
│ │ │ ├── 6-min.png
│ │ │ ├── 7-min.png
│ │ │ ├── 8-min.png
│ │ │ ├── 9-min.png
│ │ │ ├── background.png
│ │ │ ├── bai.png
│ │ │ ├── begin.png
│ │ │ ├── fit_bai.png
│ │ │ ├── fit_hei.png
│ │ │ ├── green_left_mess.png
│ │ │ ├── green_right_mess.png
│ │ │ ├── hei.png
│ │ │ ├── login.png
│ │ │ ├── lookon.png
│ │ │ ├── pan.png
│ │ │ ├── take.png
│ │ │ ├── wbai.png
│ │ │ ├── whei.png
│ │ │ ├── white_left_mess.png
│ │ │ └── white_right_mess.png
│ │ ├── MainWindow.xaml
│ │ ├── MainWindow.xaml.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── RichtextboxHelper.cs
│ │ ├── Serializer.cs
│ │ ├── StringEncrypt.cs
│ │ ├── Ui
│ │ │ ├── FontAwesome.Sharp
│ │ │ │ ├── Awesome.cs
│ │ │ │ ├── FlipOrientation.cs
│ │ │ │ ├── Icon.cs
│ │ │ │ ├── IconBase.cs
│ │ │ │ ├── IconBlock.cs
│ │ │ │ ├── IconBlockBase.cs
│ │ │ │ ├── IconChar.cs
│ │ │ │ ├── IconHelper.cs
│ │ │ │ ├── IconImage.cs
│ │ │ │ ├── IconImageBase.cs
│ │ │ │ ├── IconSource.cs
│ │ │ │ ├── IconToImageConverter.cs
│ │ │ │ ├── ToText.cs
│ │ │ │ └── ToTextBase.cs
│ │ │ ├── ImageCornerRadius.cs
│ │ │ ├── ScrollTemplate.cs
│ │ │ └── ScrollViewer.xaml
│ │ ├── Wpf_Client.csproj
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── ChaoZiSheFengYunJian-2.ttf
│ │ │ ├── Websocket-Sharp.dll
│ │ │ ├── Wpf_Client.exe
│ │ │ ├── Wpf_Client.exe.config
│ │ │ ├── Wpf_Client.pdb
│ │ │ └── 英文字体.ttf
│ │ ├── fonts
│ │ │ ├── fa-brands-400.ttf
│ │ │ ├── fa-regular-400.ttf
│ │ │ └── fa-solid-900.ttf
│ │ └── obj
│ │ └── Debug
│ └── Wpf_Client.sln
├── websocket-sharp
│ ├── ByteOrder.cs
│ ├── CloseEventArgs.cs
│ ├── CloseStatusCode.cs
│ ├── CompressionMethod.cs
│ ├── ErrorEventArgs.cs
│ ├── Ext.cs
│ ├── Fin.cs
│ ├── HttpBase.cs
│ ├── HttpRequest.cs
│ ├── HttpResponse.cs
│ ├── LogData.cs
│ ├── LogLevel.cs
│ ├── Logger.cs
│ ├── Mask.cs
│ ├── MessageEventArgs.cs
│ ├── Net
│ │ ├── AuthenticationBase.cs
│ │ ├── AuthenticationChallenge.cs
│ │ ├── AuthenticationResponse.cs
│ │ ├── AuthenticationSchemes.cs
│ │ ├── Chunk.cs
│ │ ├── ChunkStream.cs
│ │ ├── ChunkedRequestStream.cs
│ │ ├── ClientSslConfiguration.cs
│ │ ├── Cookie.cs
│ │ ├── CookieCollection.cs
│ │ ├── CookieException.cs
│ │ ├── EndPointListener.cs
│ │ ├── EndPointManager.cs
│ │ ├── HttpBasicIdentity.cs
│ │ ├── HttpConnection.cs
│ │ ├── HttpDigestIdentity.cs
│ │ ├── HttpHeaderInfo.cs
│ │ ├── HttpHeaderType.cs
│ │ ├── HttpListener.cs
│ │ ├── HttpListenerAsyncResult.cs
│ │ ├── HttpListenerContext.cs
│ │ ├── HttpListenerException.cs
│ │ ├── HttpListenerPrefix.cs
│ │ ├── HttpListenerPrefixCollection.cs
│ │ ├── HttpListenerRequest.cs
│ │ ├── HttpListenerResponse.cs
│ │ ├── HttpRequestHeader.cs
│ │ ├── HttpResponseHeader.cs
│ │ ├── HttpStatusCode.cs
│ │ ├── HttpStreamAsyncResult.cs
│ │ ├── HttpUtility.cs
│ │ ├── HttpVersion.cs
│ │ ├── InputChunkState.cs
│ │ ├── InputState.cs
│ │ ├── LineState.cs
│ │ ├── NetworkCredential.cs
│ │ ├── QueryStringCollection.cs
│ │ ├── ReadBufferState.cs
│ │ ├── RequestStream.cs
│ │ ├── ResponseStream.cs
│ │ ├── ServerSslConfiguration.cs
│ │ ├── WebHeaderCollection.cs
│ │ └── WebSockets
│ │ ├── HttpListenerWebSocketContext.cs
│ │ ├── TcpListenerWebSocketContext.cs
│ │ └── WebSocketContext.cs
│ ├── Opcode.cs
│ ├── PayloadData.cs
│ ├── Rsv.cs
│ ├── Server
│ │ ├── HttpRequestEventArgs.cs
│ │ ├── HttpServer.cs
│ │ ├── IWebSocketSession.cs
│ │ ├── ServerState.cs
│ │ ├── WebSocketBehavior.cs
│ │ ├── WebSocketServer.cs
│ │ ├── WebSocketServiceHost.cs
│ │ ├── WebSocketServiceHost`1.cs
│ │ ├── WebSocketServiceManager.cs
│ │ └── WebSocketSessionManager.cs
│ ├── WebSocket.cs
│ ├── WebSocketException.cs
│ ├── WebSocketFrame.cs
│ └── WebSocketState.cs
├── 文档.docx
└── 好例子网_五子棋.rar
32 directories, 224 files