├── .gitignore ├── README.md ├── client_cocos ├── .gitignore ├── README.md ├── assets │ ├── Scene.meta │ ├── Scene │ │ ├── BrnnRoom.fire │ │ ├── BrnnRoom.fire.meta │ │ ├── Home.fire │ │ ├── Home.fire.meta │ │ ├── Login.fire │ │ └── Login.fire.meta │ ├── Script.meta │ ├── Script │ │ ├── pomelo.meta │ │ ├── pomelo │ │ │ ├── pomelo-client.js │ │ │ ├── pomelo-client.js.meta │ │ │ ├── protobuf.js │ │ │ ├── protobuf.js.meta │ │ │ ├── protocol.js │ │ │ └── protocol.js.meta │ │ ├── protocol.meta │ │ ├── protocol │ │ │ ├── BrnnProto.js │ │ │ ├── BrnnProto.js.meta │ │ │ ├── GateConnector.js │ │ │ ├── GateConnector.js.meta │ │ │ ├── MResponse.js │ │ │ └── MResponse.js.meta │ │ ├── tool.meta │ │ ├── tool │ │ │ ├── AlertView.js │ │ │ ├── AlertView.js.meta │ │ │ ├── PokerItem.js │ │ │ └── PokerItem.js.meta │ │ ├── ui.meta │ │ └── ui │ │ │ ├── BrnnRoomController.js │ │ │ ├── BrnnRoomController.js.meta │ │ │ ├── ChipBarScript.js │ │ │ ├── ChipBarScript.js.meta │ │ │ ├── ChipViewScript.js │ │ │ ├── ChipViewScript.js.meta │ │ │ ├── HomeController.js │ │ │ ├── HomeController.js.meta │ │ │ ├── LoginController.js │ │ │ └── LoginController.js.meta │ ├── Texture.meta │ ├── Texture │ │ ├── HelloWorld.png │ │ ├── HelloWorld.png.meta │ │ ├── singleColor.png │ │ └── singleColor.png.meta │ ├── resources.meta │ └── resources │ │ ├── font.meta │ │ ├── font │ │ ├── ROMIC.TTF │ │ └── ROMIC.TTF.meta │ │ ├── png.meta │ │ ├── png │ │ ├── 10A.png │ │ ├── 10A.png.meta │ │ ├── 10B.png │ │ ├── 10B.png.meta │ │ ├── 10C.png │ │ ├── 10C.png.meta │ │ ├── 10D.png │ │ ├── 10D.png.meta │ │ ├── 11A.png │ │ ├── 11A.png.meta │ │ ├── 11B.png │ │ ├── 11B.png.meta │ │ ├── 11C.png │ │ ├── 11C.png.meta │ │ ├── 11D.png │ │ ├── 11D.png.meta │ │ ├── 12A.png │ │ ├── 12A.png.meta │ │ ├── 12B.png │ │ ├── 12B.png.meta │ │ ├── 12C.png │ │ ├── 12C.png.meta │ │ ├── 12D.png │ │ ├── 12D.png.meta │ │ ├── 13A.png │ │ ├── 13A.png.meta │ │ ├── 13B.png │ │ ├── 13B.png.meta │ │ ├── 13C.png │ │ ├── 13C.png.meta │ │ ├── 13D.png │ │ ├── 13D.png.meta │ │ ├── 1A.png │ │ ├── 1A.png.meta │ │ ├── 1B.png │ │ ├── 1B.png.meta │ │ ├── 1C.png │ │ ├── 1C.png.meta │ │ ├── 1D.png │ │ ├── 1D.png.meta │ │ ├── 2A.png │ │ ├── 2A.png.meta │ │ ├── 2B.png │ │ ├── 2B.png.meta │ │ ├── 2C.png │ │ ├── 2C.png.meta │ │ ├── 2D.png │ │ ├── 2D.png.meta │ │ ├── 3A.png │ │ ├── 3A.png.meta │ │ ├── 3B.png │ │ ├── 3B.png.meta │ │ ├── 3C.png │ │ ├── 3C.png.meta │ │ ├── 3D.png │ │ ├── 3D.png.meta │ │ ├── 4A.png │ │ ├── 4A.png.meta │ │ ├── 4B.png │ │ ├── 4B.png.meta │ │ ├── 4C.png │ │ ├── 4C.png.meta │ │ ├── 4D.png │ │ ├── 4D.png.meta │ │ ├── 5A.png │ │ ├── 5A.png.meta │ │ ├── 5B.png │ │ ├── 5B.png.meta │ │ ├── 5C.png │ │ ├── 5C.png.meta │ │ ├── 5D.png │ │ ├── 5D.png.meta │ │ ├── 6A.png │ │ ├── 6A.png.meta │ │ ├── 6B.png │ │ ├── 6B.png.meta │ │ ├── 6C.png │ │ ├── 6C.png.meta │ │ ├── 6D.png │ │ ├── 6D.png.meta │ │ ├── 7A.png │ │ ├── 7A.png.meta │ │ ├── 7B.png │ │ ├── 7B.png.meta │ │ ├── 7C.png │ │ ├── 7C.png.meta │ │ ├── 7D.png │ │ ├── 7D.png.meta │ │ ├── 8A.png │ │ ├── 8A.png.meta │ │ ├── 8B.png │ │ ├── 8B.png.meta │ │ ├── 8C.png │ │ ├── 8C.png.meta │ │ ├── 8D.png │ │ ├── 8D.png.meta │ │ ├── 9A.png │ │ ├── 9A.png.meta │ │ ├── 9B.png │ │ ├── 9B.png.meta │ │ ├── 9C.png │ │ ├── 9C.png.meta │ │ ├── 9D.png │ │ ├── 9D.png.meta │ │ ├── FontAtlas.labelatlas │ │ ├── FontAtlas.labelatlas.meta │ │ ├── b_n.jpg │ │ ├── b_n.jpg.meta │ │ ├── bai19_n.png │ │ ├── bai19_n.png.meta │ │ ├── bai1_n.jpg │ │ ├── bai1_n.jpg.meta │ │ ├── bai2_n.png │ │ ├── bai2_n.png.meta │ │ ├── bai71_n.png │ │ ├── bai71_n.png.meta │ │ ├── brnnstate_0.png │ │ ├── brnnstate_0.png.meta │ │ ├── brnnstate_1.png │ │ ├── brnnstate_1.png.meta │ │ ├── brnnstate_2.png │ │ ├── brnnstate_2.png.meta │ │ ├── chip.png │ │ ├── chip.png.meta │ │ ├── chip_b1.png │ │ ├── chip_b1.png.meta │ │ ├── chip_b5.png │ │ ├── chip_b5.png.meta │ │ ├── chip_q1.png │ │ ├── chip_q1.png.meta │ │ ├── chip_q5.png │ │ ├── chip_q5.png.meta │ │ ├── chip_w1.png │ │ ├── chip_w1.png.meta │ │ ├── chip_w5.png │ │ ├── chip_w5.png.meta │ │ ├── dazhexian.png │ │ ├── dazhexian.png.meta │ │ ├── exit_n.png │ │ ├── exit_n.png.meta │ │ ├── exit_y.png │ │ ├── exit_y.png.meta │ │ ├── la28-2_n.png │ │ ├── la28-2_n.png.meta │ │ ├── la28-3_n.png │ │ ├── la28-3_n.png.meta │ │ ├── n1.png │ │ ├── n1.png.meta │ │ ├── n2.png │ │ ├── n2.png.meta │ │ ├── n3.png │ │ ├── n3.png.meta │ │ ├── n4.png │ │ ├── n4.png.meta │ │ ├── n5.png │ │ ├── n5.png.meta │ │ ├── n6.png │ │ ├── n6.png.meta │ │ ├── n7.png │ │ ├── n7.png.meta │ │ ├── n8.png │ │ ├── n8.png.meta │ │ ├── n9.png │ │ ├── n9.png.meta │ │ ├── nm.png │ │ ├── nm.png.meta │ │ ├── nn.png │ │ ├── nn.png.meta │ │ ├── nt1_n.png │ │ ├── nt1_n.png.meta │ │ ├── nt_n.png │ │ ├── nt_n.png.meta │ │ ├── nwh.png │ │ ├── nwh.png.meta │ │ ├── nwx.png │ │ ├── nwx.png.meta │ │ ├── nzd.png │ │ ├── nzd.png.meta │ │ ├── pk_back.png │ │ ├── pk_back.png.meta │ │ ├── po9_n.png │ │ ├── po9_n.png.meta │ │ ├── px2_n.png │ │ ├── px2_n.png.meta │ │ ├── px3_n.png │ │ ├── px3_n.png.meta │ │ ├── shu.png │ │ ├── shu.png.meta │ │ ├── state_0.png │ │ ├── state_0.png.meta │ │ ├── state_1.png │ │ ├── state_1.png.meta │ │ ├── state_2.png │ │ ├── state_2.png.meta │ │ ├── wen24_n.png │ │ ├── wen24_n.png.meta │ │ ├── wen25_n.png │ │ ├── wen25_n.png.meta │ │ ├── wen50_n.png │ │ ├── wen50_n.png.meta │ │ ├── wen51_n.png │ │ ├── wen51_n.png.meta │ │ ├── x_n.png │ │ ├── x_n.png.meta │ │ ├── x_y.png │ │ ├── x_y.png.meta │ │ ├── xiao1_n.png │ │ ├── xiao1_n.png.meta │ │ ├── xiao2_n.png │ │ ├── xiao2_n.png.meta │ │ ├── xiaolight_n.png │ │ ├── xiaolight_n.png.meta │ │ ├── ying.png │ │ └── ying.png.meta │ │ ├── prefab.meta │ │ └── prefab │ │ ├── AlertView.prefab │ │ ├── AlertView.prefab.meta │ │ ├── ChipItem.prefab │ │ ├── ChipItem.prefab.meta │ │ ├── MutiLabel.prefab │ │ ├── MutiLabel.prefab.meta │ │ ├── PokerItem.prefab │ │ └── PokerItem.prefab.meta ├── build │ └── web-desktop │ │ ├── cocos2d-js.js │ │ ├── index.html │ │ ├── main.js │ │ ├── res │ │ ├── import │ │ │ ├── 11 │ │ │ │ └── 1118b27d-6116-41d1-8b68-532debcb932a.json │ │ │ ├── 18 │ │ │ │ ├── 188647bf-dd1d-44df-9821-1c161a4f650a.json │ │ │ │ └── 189d3cea-2c02-4639-94b8-9a237b3f5e57.json │ │ │ ├── 21 │ │ │ │ └── 21aacf7f-e55b-41cb-8155-6eb02749c1c3.json │ │ │ ├── 22 │ │ │ │ └── 22a79b34-b3c7-4118-821a-122498f72baa.json │ │ │ ├── 27 │ │ │ │ └── 272c6bc2-738e-47c1-a8b0-6e7ca3d64214.json │ │ │ ├── 38 │ │ │ │ └── 38765bd9-78ce-4d3d-9d13-d46b4ec7d8bd.json │ │ │ ├── 40 │ │ │ │ └── 409dc679-6daf-4b06-acac-e1434d8bfe94.json │ │ │ ├── 41 │ │ │ │ └── 410fb916-8721-4663-bab8-34397391ace7.json │ │ │ ├── 42 │ │ │ │ └── 42210c88-9efe-4f66-ae08-56d684f711c1.json │ │ │ ├── 43 │ │ │ │ └── 43adb62f-1a99-4615-ac54-8837fcd7ba14.json │ │ │ ├── 50 │ │ │ │ ├── 50000c9e-40f8-4310-8a08-7d7950ff87af.json │ │ │ │ └── 505ffc32-5978-4b6e-8409-67ace36fe98f.json │ │ │ ├── 51 │ │ │ │ └── 51a85506-baa4-4155-b363-55ee3053764e.json │ │ │ ├── 53 │ │ │ │ └── 53408d37-49d6-445e-9bf9-ac21919c76d3.json │ │ │ ├── 55 │ │ │ │ ├── 555db950-1d89-470a-8b20-b9b52e58b276.json │ │ │ │ └── 556853fe-5408-474e-a39a-f9bbd52b7d1c.json │ │ │ ├── 58 │ │ │ │ └── 58e68a13-8912-4dad-a0d2-1463168a0b57.json │ │ │ ├── 60 │ │ │ │ └── 60c4a30f-074e-4051-a357-0dbced23fc8a.json │ │ │ ├── 61 │ │ │ │ └── 611c7bc8-105a-4cb2-a05a-490fcead81e7.json │ │ │ ├── 62 │ │ │ │ └── 621f8bc0-daa4-4c4b-b26a-4e5e75655466.json │ │ │ ├── 67 │ │ │ │ └── 670223ff-1988-4a0f-8f9a-46b6a541e0d4.json │ │ │ ├── 71 │ │ │ │ └── 7116460f-86a5-4f69-b0da-85727be1443c.json │ │ │ ├── 73 │ │ │ │ └── 7360c778-94f2-43e9-a336-ac90abb74b90.json │ │ │ ├── 74 │ │ │ │ └── 7441d507-193d-4af2-8943-bf1840ca9707.json │ │ │ ├── 83 │ │ │ │ └── 8354d05e-b840-4802-aaf2-2fa9f7e1f159.json │ │ │ ├── 90 │ │ │ │ ├── 90218725-9284-43d0-96a2-6d5c044f8ad5.json │ │ │ │ └── 90857609-387c-49e9-8a90-bb232b79753c.json │ │ │ ├── 94 │ │ │ │ └── 9469ff2c-4a54-4d32-b1db-c32ce3ad2ac1.json │ │ │ ├── 95 │ │ │ │ └── 95417baf-b581-44b1-9ce4-cb0067dd7e20.json │ │ │ ├── 96 │ │ │ │ ├── 969df4d9-542e-407e-ace9-15ff4b0a2ba2.json │ │ │ │ └── 96a9cc85-6872-4cf2-9ee8-2e3c9a87c9af.json │ │ │ ├── 98 │ │ │ │ ├── 980aaeb3-b8fa-4511-870d-8030e6135e49.json │ │ │ │ └── 987d5ceb-9f88-4fa2-ab01-c3245ee83427.json │ │ │ ├── 01 │ │ │ │ └── 01223254-5a5d-4e1e-a604-bf65756c21a8.json │ │ │ ├── 05 │ │ │ │ └── 05a04532b.json │ │ │ ├── 06 │ │ │ │ └── 0613fd755.json │ │ │ ├── 07 │ │ │ │ └── 070b1364-84d1-497d-b81a-a195a092e6eb.json │ │ │ ├── 0c │ │ │ │ ├── 0c0318f9e.json │ │ │ │ ├── 0c339d10f.json │ │ │ │ ├── 0c615b1f.json │ │ │ │ └── 0cb22601-dbe4-4cb0-ab4e-a6149603072c.json │ │ │ ├── 0f │ │ │ │ └── 0f2172ae-a095-45cb-9406-8fb19acff65e.json │ │ │ ├── 3d │ │ │ │ └── 3d57ee55-9820-4d25-9d90-95b0d7df7c0d.json │ │ │ ├── 4a │ │ │ │ └── 4acc9f07-be70-45e5-aa86-46ecb3d88d01.json │ │ │ ├── 4b │ │ │ │ └── 4bbc89f9-2c30-4d5d-be6e-34402976fb3e.json │ │ │ ├── 5a │ │ │ │ ├── 5a604984-07d8-4dc6-a04f-8bac14b4a225.json │ │ │ │ └── 5ae32e4d-f90d-410b-b194-de0bdaf5548a.json │ │ │ ├── 5b │ │ │ │ └── 5b0b43a2-fcb2-4391-ab57-308890d31a20.json │ │ │ ├── 5d │ │ │ │ └── 5d3a1627-49f6-4a78-a3c9-6fafb0255c58.json │ │ │ ├── 6a │ │ │ │ └── 6a0962c9-d907-4bc2-b4fa-6073ff50fed6.json │ │ │ ├── 7b │ │ │ │ └── 7bf7afba-d8fa-417c-82e6-5a4414147f96.json │ │ │ ├── 7c │ │ │ │ └── 7cdac55e-3dbc-46fa-9127-f944a6b6ab79.json │ │ │ ├── 7f │ │ │ │ └── 7f53f2d0-20ac-4fbf-adb7-71e9cba86705.json │ │ │ ├── 8a │ │ │ │ └── 8a9fbfa0-9ef5-4f17-b1d9-cd38c286ae84.json │ │ │ ├── 8d │ │ │ │ └── 8d4190f0-4b14-4ff1-8233-3ff1b3351672.json │ │ │ ├── a0 │ │ │ │ └── a0126893-9d6b-4c67-806c-2f127afeaf0a.json │ │ │ ├── a1 │ │ │ │ └── a1c4ea44-d248-4280-8e8f-e011c448dd6a.json │ │ │ ├── a9 │ │ │ │ ├── a9253a6d-d672-400e-aba8-745a5df6997b.json │ │ │ │ └── a9ffe812-fd1e-4ae5-ad78-601ccfc90d59.json │ │ │ ├── b2 │ │ │ │ └── b20c6626-ad51-4155-9ac4-f3717ae04780.json │ │ │ ├── b6 │ │ │ │ └── b634748a-193d-4164-9121-12520a09758a.json │ │ │ ├── b8 │ │ │ │ └── b874e3e0-7587-4628-92d7-5f453f8c9064.json │ │ │ ├── bc │ │ │ │ └── bc727a65-fdf8-4c6b-9ba5-19c8df98ac53.json │ │ │ ├── bd │ │ │ │ ├── bd1ba150-57df-44b1-a253-d04da5a56810.json │ │ │ │ └── bdeec032-2969-419e-89ed-67152cf7f764.json │ │ │ ├── be │ │ │ │ ├── be2c9fe8-bdb5-4448-9444-b9550b467853.json │ │ │ │ └── be9017ac-4f2e-4f94-92b4-f69eb626b162.json │ │ │ ├── c0 │ │ │ │ └── c090eeb6-7dc0-40f7-bac3-7ab759e7bbdd.json │ │ │ ├── c4 │ │ │ │ └── c40c4af6-7dba-487d-8726-320055f4d2d1.json │ │ │ ├── c8 │ │ │ │ └── c850c569-782e-4927-bd88-d733cd0d905a.json │ │ │ ├── ca │ │ │ │ └── ca3e2654-b470-453c-93cf-52f7cfec72a3.json │ │ │ ├── d1 │ │ │ │ └── d16232a6-394d-42f7-9757-39bd0ff55d65.json │ │ │ ├── d2 │ │ │ │ └── d2865599-d863-47e3-8c4b-88a6bb46c9a4.json │ │ │ ├── d3 │ │ │ │ └── d326803c-cd21-42a2-b5f2-b41c3f6d13b6.json │ │ │ ├── d8 │ │ │ │ └── d87de9fc-7a9e-46b3-89fb-ff98dd6821c4.json │ │ │ ├── db │ │ │ │ └── dbe32d14-89e8-4835-9570-c1634fc06262.json │ │ │ ├── e1 │ │ │ │ └── e176bd0c-73ad-4bcc-8fa4-997fdc0a7272.json │ │ │ ├── e6 │ │ │ │ └── e6961f14-73d9-4384-b36f-c767cb8d9c97.json │ │ │ ├── e7 │ │ │ │ └── e720f9c7-d65f-4e68-b644-747dd664b0e4.json │ │ │ ├── e8 │ │ │ │ └── e809b0d9-baee-4354-a57e-c12d3d1de69b.json │ │ │ ├── ea │ │ │ │ └── ea94ae78-159d-4d25-94a3-654f62a605bf.json │ │ │ ├── ed │ │ │ │ └── ed03fd04-6cc3-438b-bf8c-4936f9eade9f.json │ │ │ ├── ee │ │ │ │ ├── ee2e5249-f1d4-4b25-8b45-0fc1c2300f07.json │ │ │ │ └── ee665842-544c-43e7-89b0-0c8cc47f7392.json │ │ │ ├── ef │ │ │ │ └── ef865b48-798b-4ce5-a650-92806d57f9b8.json │ │ │ ├── f0 │ │ │ │ └── f0283fe9-d878-4aa6-a174-4eea72f494ef.json │ │ │ ├── f4 │ │ │ │ └── f46b0797-63e1-4a48-969d-cf4863fb74be.json │ │ │ ├── f6 │ │ │ │ └── f61221e1-866d-4b33-a095-3fff5347df2d.json │ │ │ ├── f9 │ │ │ │ ├── f9a2f895-9caf-4a21-b834-6f2ce86b6b12.json │ │ │ │ └── f9ea7846-e41f-4efe-8d98-6e9995940b42.json │ │ │ ├── fb │ │ │ │ └── fb4ec201-cb1c-42b3-8284-240f6e24d8c9.json │ │ │ ├── fd │ │ │ │ ├── fd798c52-5c67-498f-9358-305ed8adfba2.json │ │ │ │ └── fdc31cd8-a54b-4ee7-893f-9ad28321ad2e.json │ │ │ └── ff │ │ │ │ ├── ff94e182-89c6-48ce-8d53-9768d7aa4af1.json │ │ │ │ └── ffcf8224-c9e9-4ff1-9241-0f40046fac6b.json │ │ ├── raw-assets │ │ │ ├── Texture │ │ │ │ ├── HelloWorld.png │ │ │ │ └── singleColor.png │ │ │ └── resources │ │ │ │ └── png │ │ │ │ ├── 10A.png │ │ │ │ ├── 10B.png │ │ │ │ ├── 10C.png │ │ │ │ ├── 10D.png │ │ │ │ ├── 11A.png │ │ │ │ ├── 11B.png │ │ │ │ ├── 11C.png │ │ │ │ ├── 11D.png │ │ │ │ ├── 12A.png │ │ │ │ ├── 12B.png │ │ │ │ ├── 12C.png │ │ │ │ ├── 12D.png │ │ │ │ ├── 13A.png │ │ │ │ ├── 13B.png │ │ │ │ ├── 13C.png │ │ │ │ ├── 13D.png │ │ │ │ ├── 1A.png │ │ │ │ ├── 1B.png │ │ │ │ ├── 1C.png │ │ │ │ ├── 1D.png │ │ │ │ ├── 2A.png │ │ │ │ ├── 2B.png │ │ │ │ ├── 2C.png │ │ │ │ ├── 2D.png │ │ │ │ ├── 3A.png │ │ │ │ ├── 3B.png │ │ │ │ ├── 3C.png │ │ │ │ ├── 3D.png │ │ │ │ ├── 4A.png │ │ │ │ ├── 4B.png │ │ │ │ ├── 4C.png │ │ │ │ ├── 4D.png │ │ │ │ ├── 5A.png │ │ │ │ ├── 5B.png │ │ │ │ ├── 5C.png │ │ │ │ ├── 5D.png │ │ │ │ ├── 6A.png │ │ │ │ ├── 6B.png │ │ │ │ ├── 6C.png │ │ │ │ ├── 6D.png │ │ │ │ ├── 7A.png │ │ │ │ ├── 7B.png │ │ │ │ ├── 7C.png │ │ │ │ ├── 7D.png │ │ │ │ ├── 8A.png │ │ │ │ ├── 8B.png │ │ │ │ ├── 8C.png │ │ │ │ ├── 8D.png │ │ │ │ ├── 9A.png │ │ │ │ ├── 9B.png │ │ │ │ ├── 9C.png │ │ │ │ ├── 9D.png │ │ │ │ ├── b_n.jpg │ │ │ │ ├── bai19_n.png │ │ │ │ ├── bai1_n.jpg │ │ │ │ ├── bai2_n.png │ │ │ │ ├── brnnstate_0.png │ │ │ │ ├── brnnstate_1.png │ │ │ │ ├── brnnstate_2.png │ │ │ │ ├── dazhexian.png │ │ │ │ ├── exit_n.png │ │ │ │ ├── exit_y.png │ │ │ │ ├── n1.png │ │ │ │ ├── n2.png │ │ │ │ ├── n3.png │ │ │ │ ├── n4.png │ │ │ │ ├── n5.png │ │ │ │ ├── n6.png │ │ │ │ ├── n7.png │ │ │ │ ├── n8.png │ │ │ │ ├── n9.png │ │ │ │ ├── nm.png │ │ │ │ ├── nn.png │ │ │ │ ├── nt1_n.png │ │ │ │ ├── nt_n.png │ │ │ │ ├── nwh.png │ │ │ │ ├── nwx.png │ │ │ │ ├── nzd.png │ │ │ │ ├── pk_back.png │ │ │ │ ├── po9_n.png │ │ │ │ ├── px2_n.png │ │ │ │ ├── shu.png │ │ │ │ ├── state_0.png │ │ │ │ ├── state_1.png │ │ │ │ ├── state_2.png │ │ │ │ ├── wen24_n.png │ │ │ │ ├── wen25_n.png │ │ │ │ ├── wen50_n.png │ │ │ │ ├── wen51_n.png │ │ │ │ ├── x_n.png │ │ │ │ ├── x_y.png │ │ │ │ ├── xiao1_n.png │ │ │ │ ├── xiao2_n.png │ │ │ │ ├── xiaolight_n.png │ │ │ │ └── ying.png │ │ └── raw-internal │ │ │ └── image │ │ │ ├── default_btn_disabled.png │ │ │ ├── default_btn_normal.png │ │ │ ├── default_btn_pressed.png │ │ │ └── default_panel.png │ │ ├── splash.png │ │ ├── src │ │ ├── project.dev.js │ │ └── settings.js │ │ ├── style-desktop.css │ │ └── style-mobile.css ├── creator.d.ts ├── jsconfig.json ├── project.json ├── settings │ ├── builder.json │ ├── builder.panel.json │ └── project.json ├── template-banner.png └── template.json ├── game-server ├── app.js ├── app │ ├── dao │ │ └── mysql │ │ │ ├── chess.sql │ │ │ └── mysqlHelper.js │ ├── game │ │ ├── DouniuRoom.js │ │ ├── GMResponse.js │ │ ├── JdnnRoom.js │ │ ├── PokerManager.js │ │ ├── RoomManager.js │ │ └── UToken.js │ └── servers │ │ ├── brnn │ │ ├── handler │ │ │ └── brnnHandler.js │ │ └── remote │ │ │ └── brnnRemote.js │ │ ├── chat │ │ ├── handler │ │ │ └── chatHandler.js │ │ └── remote │ │ │ └── chatRemote.js │ │ ├── connector │ │ └── handler │ │ │ └── entryHandler.js │ │ ├── gate │ │ └── handler │ │ │ └── gateHandler.js │ │ └── jdnn │ │ ├── handler │ │ └── jdnnHandler.js │ │ └── remote │ │ └── jdnnRemote.js ├── config │ ├── adminUser.json │ ├── log4js.json │ ├── master.json │ ├── mysql.json │ └── servers.json ├── package.json ├── port.sh └── start.sh ├── npm-install.bat ├── npm-install.sh ├── web-server ├── app.js ├── bin │ ├── component.bat │ └── component.sh ├── package.json └── public │ ├── index.html │ ├── js │ ├── client.js │ ├── lib │ │ ├── build │ │ │ └── build.js │ │ ├── component.json │ │ ├── components │ │ │ ├── NetEase-pomelo-protocol │ │ │ │ ├── component.json │ │ │ │ └── lib │ │ │ │ │ └── protocol.js │ │ │ ├── component-emitter │ │ │ │ ├── component.json │ │ │ │ └── index.js │ │ │ ├── pomelonode-pomelo-jsclient-websocket │ │ │ │ ├── component.json │ │ │ │ └── lib │ │ │ │ │ └── pomelo-client.js │ │ │ └── pomelonode-pomelo-protobuf │ │ │ │ ├── component.json │ │ │ │ └── lib │ │ │ │ └── client │ │ │ │ └── protobuf.js │ │ ├── jquery-1.8.0.min.js │ │ └── local │ │ │ └── boot │ │ │ ├── component.json │ │ │ └── index.js │ └── pop.js │ └── style.css └── 棋牌服务器API.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/README.md -------------------------------------------------------------------------------- /client_cocos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/.gitignore -------------------------------------------------------------------------------- /client_cocos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/README.md -------------------------------------------------------------------------------- /client_cocos/assets/Scene.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/Scene.meta -------------------------------------------------------------------------------- /client_cocos/assets/Scene/BrnnRoom.fire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/Scene/BrnnRoom.fire -------------------------------------------------------------------------------- /client_cocos/assets/Scene/BrnnRoom.fire.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/Scene/BrnnRoom.fire.meta -------------------------------------------------------------------------------- /client_cocos/assets/Scene/Home.fire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/Scene/Home.fire -------------------------------------------------------------------------------- /client_cocos/assets/Scene/Home.fire.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/Scene/Home.fire.meta -------------------------------------------------------------------------------- /client_cocos/assets/Scene/Login.fire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/Scene/Login.fire -------------------------------------------------------------------------------- /client_cocos/assets/Scene/Login.fire.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/Scene/Login.fire.meta -------------------------------------------------------------------------------- /client_cocos/assets/Script.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/Script.meta -------------------------------------------------------------------------------- /client_cocos/assets/Script/pomelo.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/Script/pomelo.meta -------------------------------------------------------------------------------- /client_cocos/assets/Script/pomelo/pomelo-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/Script/pomelo/pomelo-client.js -------------------------------------------------------------------------------- /client_cocos/assets/Script/pomelo/pomelo-client.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/Script/pomelo/pomelo-client.js.meta -------------------------------------------------------------------------------- /client_cocos/assets/Script/pomelo/protobuf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/Script/pomelo/protobuf.js -------------------------------------------------------------------------------- /client_cocos/assets/Script/pomelo/protobuf.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/Script/pomelo/protobuf.js.meta -------------------------------------------------------------------------------- /client_cocos/assets/Script/pomelo/protocol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/Script/pomelo/protocol.js -------------------------------------------------------------------------------- /client_cocos/assets/Script/pomelo/protocol.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/Script/pomelo/protocol.js.meta -------------------------------------------------------------------------------- /client_cocos/assets/Script/protocol.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/Script/protocol.meta -------------------------------------------------------------------------------- /client_cocos/assets/Script/protocol/BrnnProto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/Script/protocol/BrnnProto.js -------------------------------------------------------------------------------- /client_cocos/assets/Script/protocol/BrnnProto.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/Script/protocol/BrnnProto.js.meta -------------------------------------------------------------------------------- /client_cocos/assets/Script/protocol/GateConnector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/Script/protocol/GateConnector.js -------------------------------------------------------------------------------- /client_cocos/assets/Script/protocol/GateConnector.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/Script/protocol/GateConnector.js.meta -------------------------------------------------------------------------------- /client_cocos/assets/Script/protocol/MResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/Script/protocol/MResponse.js -------------------------------------------------------------------------------- /client_cocos/assets/Script/protocol/MResponse.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/Script/protocol/MResponse.js.meta -------------------------------------------------------------------------------- /client_cocos/assets/Script/tool.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/Script/tool.meta -------------------------------------------------------------------------------- /client_cocos/assets/Script/tool/AlertView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/Script/tool/AlertView.js -------------------------------------------------------------------------------- /client_cocos/assets/Script/tool/AlertView.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/Script/tool/AlertView.js.meta -------------------------------------------------------------------------------- /client_cocos/assets/Script/tool/PokerItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/Script/tool/PokerItem.js -------------------------------------------------------------------------------- /client_cocos/assets/Script/tool/PokerItem.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/Script/tool/PokerItem.js.meta -------------------------------------------------------------------------------- /client_cocos/assets/Script/ui.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/Script/ui.meta -------------------------------------------------------------------------------- /client_cocos/assets/Script/ui/BrnnRoomController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/Script/ui/BrnnRoomController.js -------------------------------------------------------------------------------- /client_cocos/assets/Script/ui/BrnnRoomController.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/Script/ui/BrnnRoomController.js.meta -------------------------------------------------------------------------------- /client_cocos/assets/Script/ui/ChipBarScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/Script/ui/ChipBarScript.js -------------------------------------------------------------------------------- /client_cocos/assets/Script/ui/ChipBarScript.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/Script/ui/ChipBarScript.js.meta -------------------------------------------------------------------------------- /client_cocos/assets/Script/ui/ChipViewScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/Script/ui/ChipViewScript.js -------------------------------------------------------------------------------- /client_cocos/assets/Script/ui/ChipViewScript.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/Script/ui/ChipViewScript.js.meta -------------------------------------------------------------------------------- /client_cocos/assets/Script/ui/HomeController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/Script/ui/HomeController.js -------------------------------------------------------------------------------- /client_cocos/assets/Script/ui/HomeController.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/Script/ui/HomeController.js.meta -------------------------------------------------------------------------------- /client_cocos/assets/Script/ui/LoginController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/Script/ui/LoginController.js -------------------------------------------------------------------------------- /client_cocos/assets/Script/ui/LoginController.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/Script/ui/LoginController.js.meta -------------------------------------------------------------------------------- /client_cocos/assets/Texture.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/Texture.meta -------------------------------------------------------------------------------- /client_cocos/assets/Texture/HelloWorld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/Texture/HelloWorld.png -------------------------------------------------------------------------------- /client_cocos/assets/Texture/HelloWorld.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/Texture/HelloWorld.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/Texture/singleColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/Texture/singleColor.png -------------------------------------------------------------------------------- /client_cocos/assets/Texture/singleColor.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/Texture/singleColor.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/font.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/font.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/font/ROMIC.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/font/ROMIC.TTF -------------------------------------------------------------------------------- /client_cocos/assets/resources/font/ROMIC.TTF.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/font/ROMIC.TTF.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/10A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/10A.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/10A.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/10A.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/10B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/10B.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/10B.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/10B.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/10C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/10C.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/10C.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/10C.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/10D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/10D.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/10D.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/10D.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/11A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/11A.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/11A.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/11A.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/11B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/11B.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/11B.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/11B.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/11C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/11C.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/11C.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/11C.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/11D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/11D.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/11D.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/11D.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/12A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/12A.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/12A.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/12A.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/12B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/12B.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/12B.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/12B.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/12C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/12C.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/12C.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/12C.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/12D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/12D.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/12D.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/12D.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/13A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/13A.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/13A.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/13A.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/13B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/13B.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/13B.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/13B.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/13C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/13C.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/13C.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/13C.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/13D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/13D.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/13D.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/13D.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/1A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/1A.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/1A.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/1A.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/1B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/1B.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/1B.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/1B.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/1C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/1C.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/1C.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/1C.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/1D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/1D.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/1D.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/1D.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/2A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/2A.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/2A.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/2A.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/2B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/2B.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/2B.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/2B.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/2C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/2C.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/2C.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/2C.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/2D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/2D.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/2D.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/2D.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/3A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/3A.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/3A.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/3A.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/3B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/3B.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/3B.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/3B.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/3C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/3C.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/3C.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/3C.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/3D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/3D.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/3D.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/3D.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/4A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/4A.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/4A.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/4A.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/4B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/4B.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/4B.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/4B.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/4C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/4C.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/4C.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/4C.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/4D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/4D.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/4D.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/4D.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/5A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/5A.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/5A.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/5A.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/5B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/5B.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/5B.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/5B.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/5C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/5C.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/5C.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/5C.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/5D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/5D.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/5D.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/5D.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/6A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/6A.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/6A.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/6A.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/6B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/6B.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/6B.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/6B.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/6C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/6C.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/6C.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/6C.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/6D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/6D.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/6D.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/6D.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/7A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/7A.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/7A.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/7A.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/7B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/7B.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/7B.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/7B.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/7C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/7C.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/7C.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/7C.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/7D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/7D.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/7D.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/7D.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/8A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/8A.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/8A.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/8A.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/8B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/8B.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/8B.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/8B.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/8C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/8C.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/8C.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/8C.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/8D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/8D.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/8D.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/8D.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/9A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/9A.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/9A.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/9A.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/9B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/9B.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/9B.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/9B.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/9C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/9C.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/9C.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/9C.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/9D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/9D.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/9D.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/9D.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/FontAtlas.labelatlas: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.LabelAtlas" 3 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/FontAtlas.labelatlas.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/FontAtlas.labelatlas.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/b_n.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/b_n.jpg -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/b_n.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/b_n.jpg.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/bai19_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/bai19_n.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/bai19_n.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/bai19_n.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/bai1_n.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/bai1_n.jpg -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/bai1_n.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/bai1_n.jpg.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/bai2_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/bai2_n.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/bai2_n.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/bai2_n.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/bai71_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/bai71_n.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/bai71_n.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/bai71_n.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/brnnstate_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/brnnstate_0.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/brnnstate_0.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/brnnstate_0.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/brnnstate_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/brnnstate_1.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/brnnstate_1.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/brnnstate_1.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/brnnstate_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/brnnstate_2.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/brnnstate_2.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/brnnstate_2.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/chip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/chip.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/chip.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/chip.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/chip_b1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/chip_b1.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/chip_b1.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/chip_b1.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/chip_b5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/chip_b5.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/chip_b5.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/chip_b5.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/chip_q1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/chip_q1.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/chip_q1.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/chip_q1.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/chip_q5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/chip_q5.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/chip_q5.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/chip_q5.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/chip_w1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/chip_w1.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/chip_w1.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/chip_w1.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/chip_w5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/chip_w5.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/chip_w5.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/chip_w5.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/dazhexian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/dazhexian.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/dazhexian.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/dazhexian.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/exit_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/exit_n.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/exit_n.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/exit_n.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/exit_y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/exit_y.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/exit_y.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/exit_y.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/la28-2_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/la28-2_n.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/la28-2_n.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/la28-2_n.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/la28-3_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/la28-3_n.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/la28-3_n.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/la28-3_n.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/n1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/n1.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/n1.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/n1.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/n2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/n2.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/n2.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/n2.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/n3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/n3.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/n3.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/n3.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/n4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/n4.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/n4.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/n4.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/n5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/n5.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/n5.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/n5.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/n6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/n6.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/n6.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/n6.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/n7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/n7.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/n7.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/n7.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/n8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/n8.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/n8.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/n8.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/n9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/n9.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/n9.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/n9.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/nm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/nm.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/nm.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/nm.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/nn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/nn.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/nn.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/nn.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/nt1_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/nt1_n.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/nt1_n.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/nt1_n.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/nt_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/nt_n.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/nt_n.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/nt_n.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/nwh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/nwh.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/nwh.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/nwh.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/nwx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/nwx.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/nwx.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/nwx.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/nzd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/nzd.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/nzd.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/nzd.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/pk_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/pk_back.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/pk_back.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/pk_back.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/po9_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/po9_n.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/po9_n.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/po9_n.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/px2_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/px2_n.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/px2_n.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/px2_n.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/px3_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/px3_n.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/px3_n.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/px3_n.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/shu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/shu.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/shu.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/shu.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/state_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/state_0.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/state_0.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/state_0.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/state_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/state_1.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/state_1.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/state_1.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/state_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/state_2.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/state_2.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/state_2.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/wen24_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/wen24_n.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/wen24_n.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/wen24_n.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/wen25_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/wen25_n.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/wen25_n.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/wen25_n.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/wen50_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/wen50_n.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/wen50_n.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/wen50_n.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/wen51_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/wen51_n.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/wen51_n.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/wen51_n.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/x_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/x_n.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/x_n.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/x_n.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/x_y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/x_y.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/x_y.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/x_y.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/xiao1_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/xiao1_n.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/xiao1_n.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/xiao1_n.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/xiao2_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/xiao2_n.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/xiao2_n.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/xiao2_n.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/xiaolight_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/xiaolight_n.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/xiaolight_n.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/xiaolight_n.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/ying.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/ying.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/ying.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/png/ying.png.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/prefab.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/prefab/AlertView.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/prefab/AlertView.prefab -------------------------------------------------------------------------------- /client_cocos/assets/resources/prefab/AlertView.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/prefab/AlertView.prefab.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/prefab/ChipItem.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/prefab/ChipItem.prefab -------------------------------------------------------------------------------- /client_cocos/assets/resources/prefab/ChipItem.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/prefab/ChipItem.prefab.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/prefab/MutiLabel.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/prefab/MutiLabel.prefab -------------------------------------------------------------------------------- /client_cocos/assets/resources/prefab/MutiLabel.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/prefab/MutiLabel.prefab.meta -------------------------------------------------------------------------------- /client_cocos/assets/resources/prefab/PokerItem.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/prefab/PokerItem.prefab -------------------------------------------------------------------------------- /client_cocos/assets/resources/prefab/PokerItem.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/assets/resources/prefab/PokerItem.prefab.meta -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/cocos2d-js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/cocos2d-js.js -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/index.html -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/main.js -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/01/01223254-5a5d-4e1e-a604-bf65756c21a8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/01/01223254-5a5d-4e1e-a604-bf65756c21a8.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/05/05a04532b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/05/05a04532b.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/06/0613fd755.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/06/0613fd755.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/07/070b1364-84d1-497d-b81a-a195a092e6eb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/07/070b1364-84d1-497d-b81a-a195a092e6eb.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/0c/0c0318f9e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/0c/0c0318f9e.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/0c/0c339d10f.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/0c/0c339d10f.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/0c/0c615b1f.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/0c/0c615b1f.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/0c/0cb22601-dbe4-4cb0-ab4e-a6149603072c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/0c/0cb22601-dbe4-4cb0-ab4e-a6149603072c.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/0f/0f2172ae-a095-45cb-9406-8fb19acff65e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/0f/0f2172ae-a095-45cb-9406-8fb19acff65e.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/11/1118b27d-6116-41d1-8b68-532debcb932a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/11/1118b27d-6116-41d1-8b68-532debcb932a.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/18/188647bf-dd1d-44df-9821-1c161a4f650a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/18/188647bf-dd1d-44df-9821-1c161a4f650a.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/18/189d3cea-2c02-4639-94b8-9a237b3f5e57.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/18/189d3cea-2c02-4639-94b8-9a237b3f5e57.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/21/21aacf7f-e55b-41cb-8155-6eb02749c1c3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/21/21aacf7f-e55b-41cb-8155-6eb02749c1c3.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/22/22a79b34-b3c7-4118-821a-122498f72baa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/22/22a79b34-b3c7-4118-821a-122498f72baa.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/27/272c6bc2-738e-47c1-a8b0-6e7ca3d64214.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/27/272c6bc2-738e-47c1-a8b0-6e7ca3d64214.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/38/38765bd9-78ce-4d3d-9d13-d46b4ec7d8bd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/38/38765bd9-78ce-4d3d-9d13-d46b4ec7d8bd.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/3d/3d57ee55-9820-4d25-9d90-95b0d7df7c0d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/3d/3d57ee55-9820-4d25-9d90-95b0d7df7c0d.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/40/409dc679-6daf-4b06-acac-e1434d8bfe94.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/40/409dc679-6daf-4b06-acac-e1434d8bfe94.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/41/410fb916-8721-4663-bab8-34397391ace7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/41/410fb916-8721-4663-bab8-34397391ace7.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/42/42210c88-9efe-4f66-ae08-56d684f711c1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/42/42210c88-9efe-4f66-ae08-56d684f711c1.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/43/43adb62f-1a99-4615-ac54-8837fcd7ba14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/43/43adb62f-1a99-4615-ac54-8837fcd7ba14.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/4a/4acc9f07-be70-45e5-aa86-46ecb3d88d01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/4a/4acc9f07-be70-45e5-aa86-46ecb3d88d01.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/4b/4bbc89f9-2c30-4d5d-be6e-34402976fb3e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/4b/4bbc89f9-2c30-4d5d-be6e-34402976fb3e.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/50/50000c9e-40f8-4310-8a08-7d7950ff87af.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/50/50000c9e-40f8-4310-8a08-7d7950ff87af.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/50/505ffc32-5978-4b6e-8409-67ace36fe98f.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/50/505ffc32-5978-4b6e-8409-67ace36fe98f.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/51/51a85506-baa4-4155-b363-55ee3053764e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/51/51a85506-baa4-4155-b363-55ee3053764e.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/53/53408d37-49d6-445e-9bf9-ac21919c76d3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/53/53408d37-49d6-445e-9bf9-ac21919c76d3.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/55/555db950-1d89-470a-8b20-b9b52e58b276.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/55/555db950-1d89-470a-8b20-b9b52e58b276.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/55/556853fe-5408-474e-a39a-f9bbd52b7d1c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/55/556853fe-5408-474e-a39a-f9bbd52b7d1c.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/58/58e68a13-8912-4dad-a0d2-1463168a0b57.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/58/58e68a13-8912-4dad-a0d2-1463168a0b57.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/5a/5a604984-07d8-4dc6-a04f-8bac14b4a225.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/5a/5a604984-07d8-4dc6-a04f-8bac14b4a225.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/5a/5ae32e4d-f90d-410b-b194-de0bdaf5548a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/5a/5ae32e4d-f90d-410b-b194-de0bdaf5548a.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/5b/5b0b43a2-fcb2-4391-ab57-308890d31a20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/5b/5b0b43a2-fcb2-4391-ab57-308890d31a20.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/5d/5d3a1627-49f6-4a78-a3c9-6fafb0255c58.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/5d/5d3a1627-49f6-4a78-a3c9-6fafb0255c58.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/60/60c4a30f-074e-4051-a357-0dbced23fc8a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/60/60c4a30f-074e-4051-a357-0dbced23fc8a.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/61/611c7bc8-105a-4cb2-a05a-490fcead81e7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/61/611c7bc8-105a-4cb2-a05a-490fcead81e7.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/62/621f8bc0-daa4-4c4b-b26a-4e5e75655466.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/62/621f8bc0-daa4-4c4b-b26a-4e5e75655466.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/67/670223ff-1988-4a0f-8f9a-46b6a541e0d4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/67/670223ff-1988-4a0f-8f9a-46b6a541e0d4.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/6a/6a0962c9-d907-4bc2-b4fa-6073ff50fed6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/6a/6a0962c9-d907-4bc2-b4fa-6073ff50fed6.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/71/7116460f-86a5-4f69-b0da-85727be1443c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/71/7116460f-86a5-4f69-b0da-85727be1443c.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/73/7360c778-94f2-43e9-a336-ac90abb74b90.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/73/7360c778-94f2-43e9-a336-ac90abb74b90.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/74/7441d507-193d-4af2-8943-bf1840ca9707.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/74/7441d507-193d-4af2-8943-bf1840ca9707.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/7b/7bf7afba-d8fa-417c-82e6-5a4414147f96.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/7b/7bf7afba-d8fa-417c-82e6-5a4414147f96.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/7c/7cdac55e-3dbc-46fa-9127-f944a6b6ab79.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/7c/7cdac55e-3dbc-46fa-9127-f944a6b6ab79.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/7f/7f53f2d0-20ac-4fbf-adb7-71e9cba86705.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/7f/7f53f2d0-20ac-4fbf-adb7-71e9cba86705.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/83/8354d05e-b840-4802-aaf2-2fa9f7e1f159.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/83/8354d05e-b840-4802-aaf2-2fa9f7e1f159.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/8a/8a9fbfa0-9ef5-4f17-b1d9-cd38c286ae84.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/8a/8a9fbfa0-9ef5-4f17-b1d9-cd38c286ae84.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/8d/8d4190f0-4b14-4ff1-8233-3ff1b3351672.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/8d/8d4190f0-4b14-4ff1-8233-3ff1b3351672.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/90/90218725-9284-43d0-96a2-6d5c044f8ad5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/90/90218725-9284-43d0-96a2-6d5c044f8ad5.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/90/90857609-387c-49e9-8a90-bb232b79753c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/90/90857609-387c-49e9-8a90-bb232b79753c.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/94/9469ff2c-4a54-4d32-b1db-c32ce3ad2ac1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/94/9469ff2c-4a54-4d32-b1db-c32ce3ad2ac1.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/95/95417baf-b581-44b1-9ce4-cb0067dd7e20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/95/95417baf-b581-44b1-9ce4-cb0067dd7e20.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/96/969df4d9-542e-407e-ace9-15ff4b0a2ba2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/96/969df4d9-542e-407e-ace9-15ff4b0a2ba2.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/96/96a9cc85-6872-4cf2-9ee8-2e3c9a87c9af.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/96/96a9cc85-6872-4cf2-9ee8-2e3c9a87c9af.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/98/980aaeb3-b8fa-4511-870d-8030e6135e49.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/98/980aaeb3-b8fa-4511-870d-8030e6135e49.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/98/987d5ceb-9f88-4fa2-ab01-c3245ee83427.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/98/987d5ceb-9f88-4fa2-ab01-c3245ee83427.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/a0/a0126893-9d6b-4c67-806c-2f127afeaf0a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/a0/a0126893-9d6b-4c67-806c-2f127afeaf0a.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/a1/a1c4ea44-d248-4280-8e8f-e011c448dd6a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/a1/a1c4ea44-d248-4280-8e8f-e011c448dd6a.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/a9/a9253a6d-d672-400e-aba8-745a5df6997b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/a9/a9253a6d-d672-400e-aba8-745a5df6997b.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/a9/a9ffe812-fd1e-4ae5-ad78-601ccfc90d59.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/a9/a9ffe812-fd1e-4ae5-ad78-601ccfc90d59.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/b2/b20c6626-ad51-4155-9ac4-f3717ae04780.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/b2/b20c6626-ad51-4155-9ac4-f3717ae04780.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/b6/b634748a-193d-4164-9121-12520a09758a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/b6/b634748a-193d-4164-9121-12520a09758a.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/b8/b874e3e0-7587-4628-92d7-5f453f8c9064.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/b8/b874e3e0-7587-4628-92d7-5f453f8c9064.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/bc/bc727a65-fdf8-4c6b-9ba5-19c8df98ac53.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/bc/bc727a65-fdf8-4c6b-9ba5-19c8df98ac53.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/bd/bd1ba150-57df-44b1-a253-d04da5a56810.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/bd/bd1ba150-57df-44b1-a253-d04da5a56810.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/bd/bdeec032-2969-419e-89ed-67152cf7f764.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/bd/bdeec032-2969-419e-89ed-67152cf7f764.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/be/be2c9fe8-bdb5-4448-9444-b9550b467853.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/be/be2c9fe8-bdb5-4448-9444-b9550b467853.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/be/be9017ac-4f2e-4f94-92b4-f69eb626b162.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/be/be9017ac-4f2e-4f94-92b4-f69eb626b162.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/c0/c090eeb6-7dc0-40f7-bac3-7ab759e7bbdd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/c0/c090eeb6-7dc0-40f7-bac3-7ab759e7bbdd.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/c4/c40c4af6-7dba-487d-8726-320055f4d2d1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/c4/c40c4af6-7dba-487d-8726-320055f4d2d1.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/c8/c850c569-782e-4927-bd88-d733cd0d905a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/c8/c850c569-782e-4927-bd88-d733cd0d905a.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/ca/ca3e2654-b470-453c-93cf-52f7cfec72a3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/ca/ca3e2654-b470-453c-93cf-52f7cfec72a3.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/d1/d16232a6-394d-42f7-9757-39bd0ff55d65.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/d1/d16232a6-394d-42f7-9757-39bd0ff55d65.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/d2/d2865599-d863-47e3-8c4b-88a6bb46c9a4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/d2/d2865599-d863-47e3-8c4b-88a6bb46c9a4.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/d3/d326803c-cd21-42a2-b5f2-b41c3f6d13b6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/d3/d326803c-cd21-42a2-b5f2-b41c3f6d13b6.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/d8/d87de9fc-7a9e-46b3-89fb-ff98dd6821c4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/d8/d87de9fc-7a9e-46b3-89fb-ff98dd6821c4.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/db/dbe32d14-89e8-4835-9570-c1634fc06262.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/db/dbe32d14-89e8-4835-9570-c1634fc06262.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/e1/e176bd0c-73ad-4bcc-8fa4-997fdc0a7272.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/e1/e176bd0c-73ad-4bcc-8fa4-997fdc0a7272.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/e6/e6961f14-73d9-4384-b36f-c767cb8d9c97.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/e6/e6961f14-73d9-4384-b36f-c767cb8d9c97.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/e7/e720f9c7-d65f-4e68-b644-747dd664b0e4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/e7/e720f9c7-d65f-4e68-b644-747dd664b0e4.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/e8/e809b0d9-baee-4354-a57e-c12d3d1de69b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/e8/e809b0d9-baee-4354-a57e-c12d3d1de69b.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/ea/ea94ae78-159d-4d25-94a3-654f62a605bf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/ea/ea94ae78-159d-4d25-94a3-654f62a605bf.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/ed/ed03fd04-6cc3-438b-bf8c-4936f9eade9f.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/ed/ed03fd04-6cc3-438b-bf8c-4936f9eade9f.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/ee/ee2e5249-f1d4-4b25-8b45-0fc1c2300f07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/ee/ee2e5249-f1d4-4b25-8b45-0fc1c2300f07.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/ee/ee665842-544c-43e7-89b0-0c8cc47f7392.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/ee/ee665842-544c-43e7-89b0-0c8cc47f7392.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/ef/ef865b48-798b-4ce5-a650-92806d57f9b8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/ef/ef865b48-798b-4ce5-a650-92806d57f9b8.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/f0/f0283fe9-d878-4aa6-a174-4eea72f494ef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/f0/f0283fe9-d878-4aa6-a174-4eea72f494ef.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/f4/f46b0797-63e1-4a48-969d-cf4863fb74be.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/f4/f46b0797-63e1-4a48-969d-cf4863fb74be.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/f6/f61221e1-866d-4b33-a095-3fff5347df2d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/f6/f61221e1-866d-4b33-a095-3fff5347df2d.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/f9/f9a2f895-9caf-4a21-b834-6f2ce86b6b12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/f9/f9a2f895-9caf-4a21-b834-6f2ce86b6b12.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/f9/f9ea7846-e41f-4efe-8d98-6e9995940b42.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/f9/f9ea7846-e41f-4efe-8d98-6e9995940b42.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/fb/fb4ec201-cb1c-42b3-8284-240f6e24d8c9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/fb/fb4ec201-cb1c-42b3-8284-240f6e24d8c9.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/fd/fd798c52-5c67-498f-9358-305ed8adfba2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/fd/fd798c52-5c67-498f-9358-305ed8adfba2.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/fd/fdc31cd8-a54b-4ee7-893f-9ad28321ad2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/fd/fdc31cd8-a54b-4ee7-893f-9ad28321ad2e.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/ff/ff94e182-89c6-48ce-8d53-9768d7aa4af1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/ff/ff94e182-89c6-48ce-8d53-9768d7aa4af1.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/import/ff/ffcf8224-c9e9-4ff1-9241-0f40046fac6b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/import/ff/ffcf8224-c9e9-4ff1-9241-0f40046fac6b.json -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/Texture/HelloWorld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/Texture/HelloWorld.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/Texture/singleColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/Texture/singleColor.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/10A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/10A.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/10B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/10B.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/10C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/10C.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/10D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/10D.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/11A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/11A.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/11B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/11B.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/11C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/11C.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/11D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/11D.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/12A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/12A.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/12B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/12B.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/12C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/12C.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/12D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/12D.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/13A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/13A.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/13B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/13B.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/13C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/13C.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/13D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/13D.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/1A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/1A.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/1B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/1B.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/1C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/1C.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/1D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/1D.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/2A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/2A.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/2B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/2B.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/2C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/2C.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/2D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/2D.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/3A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/3A.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/3B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/3B.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/3C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/3C.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/3D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/3D.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/4A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/4A.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/4B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/4B.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/4C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/4C.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/4D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/4D.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/5A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/5A.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/5B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/5B.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/5C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/5C.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/5D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/5D.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/6A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/6A.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/6B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/6B.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/6C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/6C.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/6D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/6D.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/7A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/7A.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/7B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/7B.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/7C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/7C.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/7D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/7D.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/8A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/8A.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/8B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/8B.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/8C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/8C.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/8D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/8D.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/9A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/9A.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/9B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/9B.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/9C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/9C.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/9D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/9D.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/b_n.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/b_n.jpg -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/bai19_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/bai19_n.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/bai1_n.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/bai1_n.jpg -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/bai2_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/bai2_n.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/brnnstate_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/brnnstate_0.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/brnnstate_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/brnnstate_1.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/brnnstate_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/brnnstate_2.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/dazhexian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/dazhexian.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/exit_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/exit_n.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/exit_y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/exit_y.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/n1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/n1.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/n2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/n2.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/n3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/n3.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/n4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/n4.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/n5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/n5.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/n6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/n6.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/n7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/n7.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/n8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/n8.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/n9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/n9.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/nm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/nm.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/nn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/nn.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/nt1_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/nt1_n.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/nt_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/nt_n.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/nwh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/nwh.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/nwx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/nwx.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/nzd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/nzd.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/pk_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/pk_back.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/po9_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/po9_n.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/px2_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/px2_n.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/shu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/shu.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/state_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/state_0.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/state_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/state_1.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/state_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/state_2.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/wen24_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/wen24_n.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/wen25_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/wen25_n.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/wen50_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/wen50_n.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/wen51_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/wen51_n.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/x_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/x_n.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/x_y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/x_y.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/xiao1_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/xiao1_n.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/xiao2_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/xiao2_n.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/xiaolight_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/xiaolight_n.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-assets/resources/png/ying.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-assets/resources/png/ying.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-internal/image/default_btn_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-internal/image/default_btn_disabled.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-internal/image/default_btn_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-internal/image/default_btn_normal.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-internal/image/default_btn_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-internal/image/default_btn_pressed.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/res/raw-internal/image/default_panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/res/raw-internal/image/default_panel.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/splash.png -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/src/project.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/src/project.dev.js -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/src/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/src/settings.js -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/style-desktop.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/style-desktop.css -------------------------------------------------------------------------------- /client_cocos/build/web-desktop/style-mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/build/web-desktop/style-mobile.css -------------------------------------------------------------------------------- /client_cocos/creator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/creator.d.ts -------------------------------------------------------------------------------- /client_cocos/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/jsconfig.json -------------------------------------------------------------------------------- /client_cocos/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/project.json -------------------------------------------------------------------------------- /client_cocos/settings/builder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/settings/builder.json -------------------------------------------------------------------------------- /client_cocos/settings/builder.panel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/settings/builder.panel.json -------------------------------------------------------------------------------- /client_cocos/settings/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/settings/project.json -------------------------------------------------------------------------------- /client_cocos/template-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/template-banner.png -------------------------------------------------------------------------------- /client_cocos/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/client_cocos/template.json -------------------------------------------------------------------------------- /game-server/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/game-server/app.js -------------------------------------------------------------------------------- /game-server/app/dao/mysql/chess.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/game-server/app/dao/mysql/chess.sql -------------------------------------------------------------------------------- /game-server/app/dao/mysql/mysqlHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/game-server/app/dao/mysql/mysqlHelper.js -------------------------------------------------------------------------------- /game-server/app/game/DouniuRoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/game-server/app/game/DouniuRoom.js -------------------------------------------------------------------------------- /game-server/app/game/GMResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/game-server/app/game/GMResponse.js -------------------------------------------------------------------------------- /game-server/app/game/JdnnRoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/game-server/app/game/JdnnRoom.js -------------------------------------------------------------------------------- /game-server/app/game/PokerManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/game-server/app/game/PokerManager.js -------------------------------------------------------------------------------- /game-server/app/game/RoomManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/game-server/app/game/RoomManager.js -------------------------------------------------------------------------------- /game-server/app/game/UToken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/game-server/app/game/UToken.js -------------------------------------------------------------------------------- /game-server/app/servers/brnn/handler/brnnHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/game-server/app/servers/brnn/handler/brnnHandler.js -------------------------------------------------------------------------------- /game-server/app/servers/brnn/remote/brnnRemote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/game-server/app/servers/brnn/remote/brnnRemote.js -------------------------------------------------------------------------------- /game-server/app/servers/chat/handler/chatHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/game-server/app/servers/chat/handler/chatHandler.js -------------------------------------------------------------------------------- /game-server/app/servers/chat/remote/chatRemote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/game-server/app/servers/chat/remote/chatRemote.js -------------------------------------------------------------------------------- /game-server/app/servers/connector/handler/entryHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/game-server/app/servers/connector/handler/entryHandler.js -------------------------------------------------------------------------------- /game-server/app/servers/gate/handler/gateHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/game-server/app/servers/gate/handler/gateHandler.js -------------------------------------------------------------------------------- /game-server/app/servers/jdnn/handler/jdnnHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/game-server/app/servers/jdnn/handler/jdnnHandler.js -------------------------------------------------------------------------------- /game-server/app/servers/jdnn/remote/jdnnRemote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/game-server/app/servers/jdnn/remote/jdnnRemote.js -------------------------------------------------------------------------------- /game-server/config/adminUser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/game-server/config/adminUser.json -------------------------------------------------------------------------------- /game-server/config/log4js.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/game-server/config/log4js.json -------------------------------------------------------------------------------- /game-server/config/master.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/game-server/config/master.json -------------------------------------------------------------------------------- /game-server/config/mysql.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/game-server/config/mysql.json -------------------------------------------------------------------------------- /game-server/config/servers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/game-server/config/servers.json -------------------------------------------------------------------------------- /game-server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/game-server/package.json -------------------------------------------------------------------------------- /game-server/port.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/game-server/port.sh -------------------------------------------------------------------------------- /game-server/start.sh: -------------------------------------------------------------------------------- 1 | nohup pomelo start & -------------------------------------------------------------------------------- /npm-install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/npm-install.bat -------------------------------------------------------------------------------- /npm-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/npm-install.sh -------------------------------------------------------------------------------- /web-server/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/web-server/app.js -------------------------------------------------------------------------------- /web-server/bin/component.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/web-server/bin/component.bat -------------------------------------------------------------------------------- /web-server/bin/component.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/web-server/bin/component.sh -------------------------------------------------------------------------------- /web-server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/web-server/package.json -------------------------------------------------------------------------------- /web-server/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/web-server/public/index.html -------------------------------------------------------------------------------- /web-server/public/js/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/web-server/public/js/client.js -------------------------------------------------------------------------------- /web-server/public/js/lib/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/web-server/public/js/lib/build/build.js -------------------------------------------------------------------------------- /web-server/public/js/lib/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/web-server/public/js/lib/component.json -------------------------------------------------------------------------------- /web-server/public/js/lib/components/NetEase-pomelo-protocol/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/web-server/public/js/lib/components/NetEase-pomelo-protocol/component.json -------------------------------------------------------------------------------- /web-server/public/js/lib/components/NetEase-pomelo-protocol/lib/protocol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/web-server/public/js/lib/components/NetEase-pomelo-protocol/lib/protocol.js -------------------------------------------------------------------------------- /web-server/public/js/lib/components/component-emitter/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/web-server/public/js/lib/components/component-emitter/component.json -------------------------------------------------------------------------------- /web-server/public/js/lib/components/component-emitter/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/web-server/public/js/lib/components/component-emitter/index.js -------------------------------------------------------------------------------- /web-server/public/js/lib/components/pomelonode-pomelo-jsclient-websocket/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/web-server/public/js/lib/components/pomelonode-pomelo-jsclient-websocket/component.json -------------------------------------------------------------------------------- /web-server/public/js/lib/components/pomelonode-pomelo-jsclient-websocket/lib/pomelo-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/web-server/public/js/lib/components/pomelonode-pomelo-jsclient-websocket/lib/pomelo-client.js -------------------------------------------------------------------------------- /web-server/public/js/lib/components/pomelonode-pomelo-protobuf/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/web-server/public/js/lib/components/pomelonode-pomelo-protobuf/component.json -------------------------------------------------------------------------------- /web-server/public/js/lib/components/pomelonode-pomelo-protobuf/lib/client/protobuf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/web-server/public/js/lib/components/pomelonode-pomelo-protobuf/lib/client/protobuf.js -------------------------------------------------------------------------------- /web-server/public/js/lib/jquery-1.8.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/web-server/public/js/lib/jquery-1.8.0.min.js -------------------------------------------------------------------------------- /web-server/public/js/lib/local/boot/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/web-server/public/js/lib/local/boot/component.json -------------------------------------------------------------------------------- /web-server/public/js/lib/local/boot/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/web-server/public/js/lib/local/boot/index.js -------------------------------------------------------------------------------- /web-server/public/js/pop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/web-server/public/js/pop.js -------------------------------------------------------------------------------- /web-server/public/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/web-server/public/style.css -------------------------------------------------------------------------------- /棋牌服务器API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoIsYourBaby/chess/HEAD/棋牌服务器API.md --------------------------------------------------------------------------------