├── .commitlintrc.js ├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ ├── ISSUE_TEMPLATE_1.md │ └── ISSUE_TEMPLATE_2.md ├── .gitignore ├── .husky ├── _ │ └── husky.sh ├── commit-msg ├── post-checkout ├── post-commit ├── post-merge ├── pre-commit └── pre-push ├── .npmrc ├── .prettierignore ├── .prettierrc.yml ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── LICENSE ├── README.md ├── ccc_editor_fix └── editor_require_fix.js ├── designs ├── EgfCoreDesign.drawio ├── EgfCoreLifeCircle.drawio ├── FrameworkDesign.drawio ├── GameApplication.drawio └── NetDesign.drawio ├── docs ├── .nojekyll ├── README.md ├── _coverpage.md ├── _navbar.md ├── _sidebar.md ├── api │ ├── assets │ │ ├── css │ │ │ └── main.css │ │ ├── images │ │ │ ├── egf-logo.svg │ │ │ ├── icons.png │ │ │ ├── icons@2x.png │ │ │ ├── widgets.png │ │ │ └── widgets@2x.png │ │ └── js │ │ │ ├── main.js │ │ │ └── search.json │ ├── classes │ │ ├── broadcast.broadcast-1.html │ │ ├── c3d_comp_template.testcomp.html │ │ ├── cli.bc.html │ │ ├── cli.classa-1.html │ │ ├── cli.classa-2.html │ │ ├── cli.classa.html │ │ ├── cli.classb-1.html │ │ ├── cli.classb-2.html │ │ ├── cli.classb.html │ │ ├── cli.classc-1.html │ │ ├── cli.classc.html │ │ ├── cli.classd.html │ │ ├── cli.refotherpkg.html │ │ ├── core.app.html │ │ ├── display_ctrl.dpcmgr.html │ │ ├── dpctrl_c3d.layer.html │ │ ├── dpctrl_c3d.nodectrl.html │ │ ├── dpctrl_ccc.layer.eventtype.html │ │ ├── dpctrl_ccc.layer.html │ │ ├── dpctrl_ccc.nodectrl.html │ │ ├── dpctrl_fgui.bindertool.html │ │ ├── dpctrl_fgui.bindnode2targetplugin.html │ │ ├── dpctrl_fgui.fbindertool.html │ │ ├── dpctrl_fgui.fdpctrl.html │ │ ├── dpctrl_fgui.flayer.html │ │ ├── dpctrl_fguicc.bindertool.html │ │ ├── dpctrl_fguicc.bindnode2targetplugin.html │ │ ├── dpctrl_fguicc.fbindertool.html │ │ ├── dpctrl_fguicc.fdpctrl.html │ │ ├── dpctrl_fguicc.flayer.html │ │ ├── enet.defaultneteventhandler.html │ │ ├── enet.defaultprotohandler.html │ │ ├── enet.netnode.html │ │ ├── enet.wsocket.html │ │ ├── enet_pbws.byte.html │ │ ├── enet_pbws.pbprotohandler.html │ │ ├── enet_pinus_pb.bytearray.html │ │ ├── enet_pinus_pb.endian.html │ │ ├── enet_pinus_pb.message.html │ │ ├── enet_pinus_pb.package.html │ │ ├── enet_pinus_pb.pinusprotohandler.html │ │ ├── enet_pinus_pb.protobuf.html │ │ ├── enet_pinus_pb.protocol.html │ │ ├── enet_pinus_pb.routedic.html │ │ ├── excel2all.defaultconverthook.html │ │ ├── excel2all.defaultoutputtransformer.html │ │ ├── excel2all.defaultparsehandler.html │ │ ├── excel2all.logger.html │ │ ├── layer.layermgr.html │ │ ├── obj_pool.baseobjpool.html │ │ └── obj_pool.objpoolmgr.html │ ├── enums │ │ ├── dpctrl_ccc.layer._localdirtyflag.html │ │ ├── enet.packagetype.html │ │ ├── enet.socketstate.html │ │ ├── enet_pbws.packagetype.html │ │ ├── enet_pinus_pb.bytearraysize.html │ │ ├── enet_pinus_pb.endianconst.html │ │ ├── enet_pinus_pb.packagetype.html │ │ ├── excel2all.loglevelenum.html │ │ └── excel2all.tabletype.html │ ├── globals.html │ ├── index.html │ ├── interfaces │ │ ├── broadcast.__global.broadcast.ibroadcast.html │ │ ├── broadcast.__global.broadcast.ilistenerhandler.html │ │ ├── broadcast.__global.broadcast.imsgkey.html │ │ ├── broadcast.__global.broadcast.imsgvaluetype.html │ │ ├── broadcast.__global.broadcast.iresulttype.html │ │ ├── broadcast.__global.broadcast.istickyhandler.html │ │ ├── core.__global.egf.iapp.html │ │ ├── core.__global.egf.ibootloader.html │ │ ├── core.__global.egf.imodule.html │ │ ├── display_ctrl.__global.displayctrl.icreateconfig.html │ │ ├── display_ctrl.__global.displayctrl.ictrl.html │ │ ├── display_ctrl.__global.displayctrl.iinitconfig.html │ │ ├── display_ctrl.__global.displayctrl.iloadconfig.html │ │ ├── display_ctrl.__global.displayctrl.iloadhandler.html │ │ ├── display_ctrl.__global.displayctrl.imgr.html │ │ ├── display_ctrl.__global.displayctrl.ireshandler.html │ │ ├── display_ctrl.__global.displayctrl.iresloadconfig.html │ │ ├── display_ctrl.__global.displayctrl.ishowconfig.html │ │ ├── dpctrl_fgui.__global-1.ifbinder.html │ │ ├── dpctrl_fgui.__global.nodebinder.ibinder.html │ │ ├── dpctrl_fgui.__global.nodebinder.ibindertool.html │ │ ├── dpctrl_fgui.__global.nodebinder.ibindoption.html │ │ ├── dpctrl_fgui.__global.nodebinder.ibindplugin.html │ │ ├── dpctrl_fgui.fbinderplugin.html │ │ ├── dpctrl_fgui.interfaces.html │ │ ├── dpctrl_fguicc.__global-1.ifbinder.html │ │ ├── dpctrl_fguicc.__global.nodebinder.ibinder.html │ │ ├── dpctrl_fguicc.__global.nodebinder.ibindertool.html │ │ ├── dpctrl_fguicc.__global.nodebinder.ibindoption.html │ │ ├── dpctrl_fguicc.__global.nodebinder.ibindplugin.html │ │ ├── dpctrl_fguicc._fairygui_cc_.gcomponent.html │ │ ├── dpctrl_fguicc.fbinderplugin.html │ │ ├── dpctrl_fguicc.interfaces.html │ │ ├── enet.__global.enet.icallbackhandler.html │ │ ├── enet.__global.enet.iconnectoptions.html │ │ ├── enet.__global.enet.idecodepackage.html │ │ ├── enet.__global.enet.idefaulthandshakeres.html │ │ ├── enet.__global.enet.iheartbeatconfig.html │ │ ├── enet.__global.enet.imessage.html │ │ ├── enet.__global.enet.ineteventhandler.html │ │ ├── enet.__global.enet.inode.html │ │ ├── enet.__global.enet.inodeconfig.html │ │ ├── enet.__global.enet.ipackage.html │ │ ├── enet.__global.enet.iprotohandler.html │ │ ├── enet.__global.enet.ireconnectconfig.html │ │ ├── enet.__global.enet.irequestconfig.html │ │ ├── enet.__global.enet.isocket.html │ │ ├── enet.__global.enet.isocketeventhandler.html │ │ ├── enet_pbws.__global.ihandshakereq.html │ │ ├── enet_pbws.__global.ipackagetypeprotokey.html │ │ ├── enet_pbws.__global.ipackagetypeprotokeymap.html │ │ ├── enet_pbws.__global.ipbprotoins.html │ │ ├── enet_pinus_pb.__global-1.ipinushandshake.html │ │ ├── enet_pinus_pb.__global-1.ipinusprotos.html │ │ ├── enet_pinus_pb.__global.ipinusdecodemessage.html │ │ ├── enet_pinus_pb.imessage.html │ │ ├── enet_pinus_pb.ipackage.html │ │ ├── excel2all.__global-1.ihorizontalfielddefine.html │ │ ├── excel2all.__global-1.itablecell.html │ │ ├── excel2all.__global-1.itabledefine.html │ │ ├── excel2all.__global-1.itablefield.html │ │ ├── excel2all.__global-1.itableparseresult.html │ │ ├── excel2all.__global-1.itablevalues.html │ │ ├── excel2all.__global-1.itransvalueresult.html │ │ ├── excel2all.__global-1.iverticalfielddefine.html │ │ ├── excel2all.__global-2.ioutputconfig.html │ │ ├── excel2all.__global-3.icellvaluetranshandler.html │ │ ├── excel2all.__global-3.iconvertcontext.html │ │ ├── excel2all.__global-3.iconverthook.html │ │ ├── excel2all.__global-3.ifileinfo.html │ │ ├── excel2all.__global-3.ioutputtransformer.html │ │ ├── excel2all.__global-3.itableconvertconfig.html │ │ ├── excel2all.__global-3.itableparsehandler.html │ │ ├── excel2all.__global-3.itableparseresult.html │ │ ├── excel2all.__global-3.iworkdoresult.html │ │ ├── excel2all.__global-3.iworkersharedata.html │ │ ├── excel2all.__global.ioutputfileinfo.html │ │ ├── excel2all.interfaces.html │ │ ├── layer.__global.layer.ilayer.html │ │ ├── layer.__global.layer.imgr.html │ │ ├── obj_pool.__global.objpool.iobj.html │ │ ├── obj_pool.__global.objpool.iobjhandler.html │ │ ├── obj_pool.__global.objpool.ipool.html │ │ ├── obj_pool.__global.objpool.ipoolinitoption.html │ │ └── obj_pool.__global.objpool.ipoolmgr.html │ └── modules │ │ ├── broadcast.__global.broadcast.html │ │ ├── broadcast.__global.html │ │ ├── broadcast.html │ │ ├── c3d_comp_template.html │ │ ├── c3daxios.html │ │ ├── cli.html │ │ ├── core.__global.egf.html │ │ ├── core.__global.html │ │ ├── core.html │ │ ├── display_ctrl.__global.displayctrl.html │ │ ├── display_ctrl.__global.html │ │ ├── display_ctrl.html │ │ ├── dpctrl_c3d.html │ │ ├── dpctrl_ccc.html │ │ ├── dpctrl_fgui.__global-1.html │ │ ├── dpctrl_fgui.__global.html │ │ ├── dpctrl_fgui.__global.nodebinder.html │ │ ├── dpctrl_fgui.html │ │ ├── dpctrl_fguicc.__global-1.html │ │ ├── dpctrl_fguicc.__global.html │ │ ├── dpctrl_fguicc.__global.nodebinder.html │ │ ├── dpctrl_fguicc._fairygui_cc_.html │ │ ├── dpctrl_fguicc.html │ │ ├── egf_protobuf_cli.html │ │ ├── emitter3.html │ │ ├── enet.__global.enet.html │ │ ├── enet.__global.html │ │ ├── enet.html │ │ ├── enet_pbws.__global.html │ │ ├── enet_pbws.html │ │ ├── enet_pinus_pb.__global-1.html │ │ ├── enet_pinus_pb.__global.html │ │ ├── enet_pinus_pb.html │ │ ├── excel2all.__global-1.html │ │ ├── excel2all.__global-2.html │ │ ├── excel2all.__global-3.html │ │ ├── excel2all.__global.html │ │ ├── excel2all.html │ │ ├── layer.__global.html │ │ ├── layer.__global.layer.html │ │ ├── layer.html │ │ ├── obj_pool.__global.html │ │ ├── obj_pool.__global.objpool.html │ │ ├── obj_pool.html │ │ └── xstate2c3d.html ├── examples │ ├── ccc-bigproj-example │ │ ├── assets │ │ │ ├── atlas-test │ │ │ │ ├── config.b387e.json │ │ │ │ ├── import │ │ │ │ │ ├── 19 │ │ │ │ │ │ └── 190ebb06c.7871f.json │ │ │ │ │ ├── 31 │ │ │ │ │ │ └── 31796688-153c-4497-8b38-30b7f6225d1f.7c79c.json │ │ │ │ │ ├── 67 │ │ │ │ │ │ └── 67fda919-2ed4-41c7-8f0f-352157da3f3c.fdb3f.json │ │ │ │ │ ├── 89 │ │ │ │ │ │ └── 895a2e31-2273-4b5d-b47b-b736b06295f8.2aaf7.json │ │ │ │ │ └── c8 │ │ │ │ │ │ └── c847af1f-1b1d-4951-8459-1ecf8df925f8.528af.json │ │ │ │ ├── index.b387e.js │ │ │ │ └── native │ │ │ │ │ └── 19 │ │ │ │ │ └── 190ebb06c.cc677.png │ │ │ ├── bundle-name-test-real │ │ │ │ ├── config.a6de7.json │ │ │ │ ├── import │ │ │ │ │ ├── 33 │ │ │ │ │ │ └── 33575876-d1e0-4e85-9433-7f629898200a.22429.json │ │ │ │ │ ├── 00 │ │ │ │ │ │ └── 00ce381f-7940-4582-bc37-52e5fe41855e.03253.json │ │ │ │ │ ├── 1d │ │ │ │ │ │ └── 1d12017ff.7871f.json │ │ │ │ │ ├── 8e │ │ │ │ │ │ └── 8e2ab4c5-5d55-4341-a054-21e68344e974.9bc29.json │ │ │ │ │ └── ba │ │ │ │ │ │ └── ba4d0b01-a9f3-481b-87fd-a943e9604961.774a2.json │ │ │ │ ├── index.a6de7.js │ │ │ │ └── native │ │ │ │ │ └── 1d │ │ │ │ │ └── 1d12017ff.cc677.png │ │ │ ├── internal │ │ │ │ ├── config.d0832.json │ │ │ │ ├── import │ │ │ │ │ └── 09 │ │ │ │ │ │ └── 0967b326a.1f618.json │ │ │ │ ├── index.d0832.js │ │ │ │ └── native │ │ │ │ │ └── 02 │ │ │ │ │ └── 0275e94c-56a7-410f-bd1a-fc7483f7d14a.cea68.png │ │ │ ├── main-remote-bundle-test │ │ │ │ ├── config.8ba0b.json │ │ │ │ ├── import │ │ │ │ │ ├── 07 │ │ │ │ │ │ └── 07db74db7.661ae.json │ │ │ │ │ ├── 0d │ │ │ │ │ │ └── 0d9059280.b2b05.json │ │ │ │ │ └── ae │ │ │ │ │ │ └── aef9c106-ab4d-4759-9ebc-99e2c9969aa3.8bbe5.json │ │ │ │ ├── index.8ba0b.js │ │ │ │ └── native │ │ │ │ │ ├── 47 │ │ │ │ │ └── 47927f44-d1c4-4894-91df-9a6a96800699.11bf8.png │ │ │ │ │ └── ac │ │ │ │ │ └── ac472bab-ca57-49d4-91b8-8c4a11a65229.11bf8.png │ │ │ ├── main-res-bundle │ │ │ │ ├── config.00d12.json │ │ │ │ ├── import │ │ │ │ │ ├── 0c │ │ │ │ │ │ └── 0c1273b61.661ae.json │ │ │ │ │ └── ac │ │ │ │ │ │ └── ac472bab-ca57-49d4-91b8-8c4a11a65229.7871f.json │ │ │ │ ├── index.00d12.js │ │ │ │ └── native │ │ │ │ │ └── ac │ │ │ │ │ └── ac472bab-ca57-49d4-91b8-8c4a11a65229.11bf8.png │ │ │ ├── main │ │ │ │ ├── config.fe89d.json │ │ │ │ ├── import │ │ │ │ │ ├── 19 │ │ │ │ │ │ └── 197cb3ca-20e4-4bad-a060-2d88e2c69cbb.d52bd.json │ │ │ │ │ ├── 33 │ │ │ │ │ │ └── 331d865b-824a-4e20-a333-b69632efdc95.71762.json │ │ │ │ │ ├── 45 │ │ │ │ │ │ └── 45f4514a-2e6a-48a7-99a3-2c289a96499e.a0eaa.json │ │ │ │ │ ├── 90 │ │ │ │ │ │ └── 90146a77-e72f-4d02-876f-eeeab92f7968.af80c.json │ │ │ │ │ ├── 03 │ │ │ │ │ │ └── 0319b46fa.5e057.json │ │ │ │ │ ├── 07 │ │ │ │ │ │ └── 07917652a.be10b.json │ │ │ │ │ ├── 0a │ │ │ │ │ │ └── 0ae5bc192.cc2b7.json │ │ │ │ │ ├── 0c │ │ │ │ │ │ └── 0c339d10f.a9ccb.json │ │ │ │ │ ├── 5f │ │ │ │ │ │ └── 5f9f06dd-d826-49b9-b283-19a7b4aa550d.5110b.json │ │ │ │ │ ├── e0 │ │ │ │ │ │ └── e0ebc42e-acdd-453d-a15f-88a3f63538de.3b6c2.json │ │ │ │ │ └── f9 │ │ │ │ │ │ └── f998aefd-93f9-494b-8791-8f96aa98f583.669e2.json │ │ │ │ ├── index.fe89d.js │ │ │ │ └── native │ │ │ │ │ ├── 32 │ │ │ │ │ └── 3229feab-b062-4c75-ad91-b962602def21.d23b2.png │ │ │ │ │ ├── 46 │ │ │ │ │ └── 46533172-baae-475f-af98-2eec76ef9acd.8a369.png │ │ │ │ │ ├── 68 │ │ │ │ │ └── 68a612ed-3e86-43c2-8883-535bc7711af4.20ec7.png │ │ │ │ │ ├── 71 │ │ │ │ │ └── 71561142-4c83-4933-afca-cb7a17f67053.c06a9.png │ │ │ │ │ ├── 03 │ │ │ │ │ └── 038a47ce-d322-4654-a80d-0419c739168f.7460e.png │ │ │ │ │ ├── 04 │ │ │ │ │ └── 0439ddbc-5893-4fd0-a233-d0f5e51ba5cd.c49b2.png │ │ │ │ │ ├── 1b │ │ │ │ │ └── 1b6a0b3c-2a0e-410a-95ab-53dc9a03a360.89272.png │ │ │ │ │ ├── 4e │ │ │ │ │ └── 4e02ec2c-860e-43cc-9910-8ff2aa151884.30ed5.png │ │ │ │ │ ├── 5d │ │ │ │ │ └── 5de7dc2b-df4c-404d-9f68-d799da224356.a7d3e.png │ │ │ │ │ ├── 6e │ │ │ │ │ └── 6e056173-d285-473c-b206-40a7fff5386e.6d3cf.png │ │ │ │ │ ├── 6f │ │ │ │ │ └── 6fd1ec90-efab-41ec-ab6b-4cd6a085951d.34d78.png │ │ │ │ │ ├── 8a │ │ │ │ │ └── 8a60351e-d9cc-46f4-b1d6-6cde36a5b9ad.c2cb2.png │ │ │ │ │ ├── a9 │ │ │ │ │ └── a91e438f-38c3-4cc9-9f86-3138b2afdafa.e042c.png │ │ │ │ │ ├── ae │ │ │ │ │ └── ae8e3d60-767e-493b-8a4d-6b564e7ecab0.48d47.png │ │ │ │ │ ├── b4 │ │ │ │ │ └── b43ff3c2-02bb-4874-81f7-f2dea6970f18.83fcc.png │ │ │ │ │ ├── e8 │ │ │ │ │ └── e851e89b-faa2-4484-bea6-5c01dd9f06e2.90cf4.png │ │ │ │ │ └── eb │ │ │ │ │ └── eb06a97a-5161-4d70-bac7-8a8f885f8399.5cb91.png │ │ │ ├── no-script-bundle │ │ │ │ ├── config.cbce2.json │ │ │ │ ├── import │ │ │ │ │ ├── 44 │ │ │ │ │ │ └── 448bedea-2fd7-444a-af95-c4908ded7f01.3d7ce.json │ │ │ │ │ ├── 01 │ │ │ │ │ │ └── 01f4c258b.c8642.json │ │ │ │ │ └── 0d │ │ │ │ │ │ └── 0d617cd19.c36e8.json │ │ │ │ ├── index.cbce2.js │ │ │ │ └── native │ │ │ │ │ ├── 36 │ │ │ │ │ └── 36cab9de-f578-41fc-aeed-dbb1588f3639.6e3dd.png │ │ │ │ │ ├── 5a │ │ │ │ │ └── 5abf0875-25c0-4f08-a575-27bfa6b3514c.2fa9c.png │ │ │ │ │ └── a1 │ │ │ │ │ └── a1a16fc0-8c54-48a3-b35b-f58ba95f6bcb.220aa.png │ │ │ ├── ref-other-bundle-res │ │ │ │ ├── config.918e2.json │ │ │ │ ├── import │ │ │ │ │ ├── 36 │ │ │ │ │ │ └── 36cab9de-f578-41fc-aeed-dbb1588f3639.7871f.json │ │ │ │ │ ├── 61 │ │ │ │ │ │ └── 61c1d13c-3416-4b55-976f-4d653ca44267.1ff1f.json │ │ │ │ │ ├── 00 │ │ │ │ │ │ └── 006c8a0d-238b-495f-8a90-44ae472736e8.3fe5d.json │ │ │ │ │ ├── 1b │ │ │ │ │ │ └── 1b229d25-c8a9-4db9-8afc-8f67e157ba1d.446dd.json │ │ │ │ │ └── f6 │ │ │ │ │ │ └── f6915bd8-c022-49d1-ada5-289206301976.5c19c.json │ │ │ │ ├── index.918e2.js │ │ │ │ └── native │ │ │ │ │ └── 36 │ │ │ │ │ └── 36cab9de-f578-41fc-aeed-dbb1588f3639.6e3dd.png │ │ │ ├── remote-bunlde-test │ │ │ │ ├── config.67b26.json │ │ │ │ ├── import │ │ │ │ │ ├── 44 │ │ │ │ │ │ └── 4430780d-3861-4534-8d39-e10cb723748c.46e93.json │ │ │ │ │ ├── 53 │ │ │ │ │ │ └── 53d1d262-ba67-4346-abc0-0d79d2280d06.f2db7.json │ │ │ │ │ ├── 02 │ │ │ │ │ │ └── 02788bb97.713ac.json │ │ │ │ │ ├── 1a │ │ │ │ │ │ └── 1aca8172f.7871f.json │ │ │ │ │ └── fa │ │ │ │ │ │ └── fae1d7b6-ff90-4294-af8d-824ab488f5ed.2fbb3.json │ │ │ │ ├── index.67b26.js │ │ │ │ └── native │ │ │ │ │ └── 1a │ │ │ │ │ └── 1aca8172f.cc677.png │ │ │ ├── resources │ │ │ │ ├── config.16898.json │ │ │ │ ├── import │ │ │ │ │ ├── 20 │ │ │ │ │ │ └── 2005b192-0ffd-415e-8de3-40b98843ebec.24ba3.json │ │ │ │ │ ├── 08 │ │ │ │ │ │ └── 08e5c773-a3af-4f46-bda7-f790011eaa6c.c681f.json │ │ │ │ │ ├── 1c │ │ │ │ │ │ └── 1c0a44085.88222.json │ │ │ │ │ ├── 2a │ │ │ │ │ │ └── 2a0a2f59-6757-4bf2-bbdd-89527d1bdfb7.13e86.json │ │ │ │ │ └── 4b │ │ │ │ │ │ └── 4bb35a6b-0905-4f98-b7ee-d317368ea27d.a1696.json │ │ │ │ ├── index.16898.js │ │ │ │ └── native │ │ │ │ │ └── 1c │ │ │ │ │ └── 1c0a44085.a4569.webp │ │ │ ├── test-same-bundle │ │ │ │ ├── config.0341c.json │ │ │ │ ├── import │ │ │ │ │ ├── 31 │ │ │ │ │ │ └── 31a8baee-fa5b-4c30-82b3-0947549e5695.24548.json │ │ │ │ │ └── 77 │ │ │ │ │ │ └── 7754e65c-9f83-4aa5-b7e7-05d740684626.7871f.json │ │ │ │ ├── index.0341c.js │ │ │ │ └── native │ │ │ │ │ └── 77 │ │ │ │ │ └── 7754e65c-9f83-4aa5-b7e7-05d740684626.11bf8.png │ │ │ └── testbundle │ │ │ │ ├── config.2a60c.json │ │ │ │ ├── import │ │ │ │ ├── 12 │ │ │ │ │ └── 129fa2b9d.7871f.json │ │ │ │ ├── 68 │ │ │ │ │ └── 6802a3e7-67d0-464a-923d-2e5b1c98b689.97120.json │ │ │ │ ├── 09 │ │ │ │ │ └── 094dbb296.94eb8.json │ │ │ │ └── cb │ │ │ │ │ └── cb4ea7c7-b9ec-4909-ba13-b43bf003949f.38ee5.json │ │ │ │ ├── index.2a60c.js │ │ │ │ └── native │ │ │ │ └── 12 │ │ │ │ └── 129fa2b9d.cc677.png │ │ ├── cocos2d-js-min.3045e.js │ │ ├── ext-res │ │ │ ├── .svn │ │ │ │ └── 新建文本文档.txt │ │ │ ├── atlas │ │ │ │ ├── emoji_2070c.plist │ │ │ │ ├── emoji_f9290.png │ │ │ │ ├── sheep_4a345.plist │ │ │ │ ├── sheep_74bc8.png │ │ │ │ ├── ui_227bf.png │ │ │ │ └── ui_c2658.plist │ │ │ ├── dragonbones │ │ │ │ ├── dragon │ │ │ │ │ ├── NewDragonTest_4d87f.json │ │ │ │ │ ├── texture_53343.json │ │ │ │ │ └── texture_b293a.png │ │ │ │ ├── mecha_1502b │ │ │ │ │ ├── mecha_1502b_ske_306b8.json │ │ │ │ │ ├── mecha_1502b_tex_2cee7.json │ │ │ │ │ └── mecha_1502b_tex_81ad0.png │ │ │ │ └── sword-man │ │ │ │ │ ├── SwordsMan_ske_beaf2.dbbin │ │ │ │ │ ├── SwordsMan_tex_8c827.png │ │ │ │ │ └── SwordsMan_tex_a3a2c.json │ │ │ ├── fgui-res │ │ │ │ ├── Bag_a2fc1.bin │ │ │ │ ├── Bag_atlas0_1507e.png │ │ │ │ ├── G3DLoaderTest_8a48d.bin │ │ │ │ ├── Icons │ │ │ │ │ ├── i0_929dd.png │ │ │ │ │ ├── i1_ae236.png │ │ │ │ │ ├── i2_de2a4.png │ │ │ │ │ ├── i3_04d65.png │ │ │ │ │ ├── i4_f3510.png │ │ │ │ │ ├── i5_5a652.png │ │ │ │ │ ├── i6_c26fa.png │ │ │ │ │ ├── i7_75697.png │ │ │ │ │ ├── i8_93256.png │ │ │ │ │ ├── i9_5dc74.png │ │ │ │ │ ├── k0_ab7d9.png │ │ │ │ │ └── k1_0744d.png │ │ │ │ ├── i0_929dd.png │ │ │ │ ├── i1_ae236.png │ │ │ │ ├── i2_de2a4.png │ │ │ │ ├── i3_04d65.png │ │ │ │ ├── mecha_1502b_ske_306b8.json │ │ │ │ ├── mecha_1502b_tex_2cee7.json │ │ │ │ ├── mecha_1502b_tex_81ad0.png │ │ │ │ ├── raptor-pro_24d4f.png │ │ │ │ ├── raptor-pro_99de9.atlas │ │ │ │ └── raptor-pro_b37c4.skel │ │ │ ├── imported │ │ │ │ ├── barriers_3a52e.png │ │ │ │ ├── ground_9309b.png │ │ │ │ ├── hexa_2d0db.png │ │ │ │ ├── hexa_eec5f.tmx │ │ │ │ ├── iso-test_2df34.png │ │ │ │ ├── iso-test_9ed90.tmx │ │ │ │ ├── map_44d6a.tmx │ │ │ │ ├── particle │ │ │ │ │ ├── atom_04ccf.plist │ │ │ │ │ ├── smoke_80971.png │ │ │ │ │ └── smoke_c7916.plist │ │ │ │ ├── perspective_walls_2ca0e.tmx │ │ │ │ ├── perspective_walls_42877.png │ │ │ │ ├── perspective_walls_b5a8e.tsx │ │ │ │ └── sticker-knight │ │ │ │ │ └── map │ │ │ │ │ ├── alter.png_b1dcd.meta │ │ │ │ │ ├── alter_270bd.png │ │ │ │ │ ├── backgroundArch.png_5e14a.meta │ │ │ │ │ ├── backgroundArch_bbb23.png │ │ │ │ │ ├── backgroundMountain.png_e6b57.meta │ │ │ │ │ ├── backgroundMountain_a148f.png │ │ │ │ │ ├── backgroundTower.png_30075.meta │ │ │ │ │ ├── backgroundTower_cc756.png │ │ │ │ │ ├── backgroundTree.png_0fa1b.meta │ │ │ │ │ ├── backgroundTree_ecdcd.png │ │ │ │ │ ├── blobBlue.png_cc6fb.meta │ │ │ │ │ ├── blobBlue_82d17.png │ │ │ │ │ ├── blobGreen.png_be25f.meta │ │ │ │ │ ├── blobGreen_04d0d.png │ │ │ │ │ ├── blue.png_ec528.meta │ │ │ │ │ ├── blue_e2c3c.png │ │ │ │ │ ├── bombStroked.png_fd823.meta │ │ │ │ │ ├── bombStroked_8d0e6.png │ │ │ │ │ ├── castleWall.png_5b5c8.meta │ │ │ │ │ ├── castleWall_1dbe6.png │ │ │ │ │ ├── cloud.png_c86da.meta │ │ │ │ │ ├── cloud_562a5.png │ │ │ │ │ ├── column1.png_0000d.meta │ │ │ │ │ ├── column1_2654d.png │ │ │ │ │ ├── column2.png_77f69.meta │ │ │ │ │ ├── column2_7d1e8.png │ │ │ │ │ ├── doorBlueStroked.png_b8873.meta │ │ │ │ │ ├── doorBlueStroked_19ebd.png │ │ │ │ │ ├── doorGreenStroke.png_47a44.meta │ │ │ │ │ ├── doorGreenStroke_2541e.png │ │ │ │ │ ├── doorRedStroked.png_8e784.meta │ │ │ │ │ ├── doorRedStroked_92507.png │ │ │ │ │ ├── doorStroked.png_fc29c.meta │ │ │ │ │ ├── doorStroked_c1256.png │ │ │ │ │ ├── earthWall.png_e7e48.meta │ │ │ │ │ ├── earthWall2.png_d5aa7.meta │ │ │ │ │ ├── earthWall2_948ee.png │ │ │ │ │ ├── earthWall_36205.png │ │ │ │ │ ├── exit.png_eb49d.meta │ │ │ │ │ ├── exit_50170.png │ │ │ │ │ ├── flare.png_9f857.meta │ │ │ │ │ ├── flare_9d37e.png │ │ │ │ │ ├── gemBlueStroked.png_d93bf.meta │ │ │ │ │ ├── gemBlueStroked_b2bdc.png │ │ │ │ │ ├── gemRedStroked.png_84c90.meta │ │ │ │ │ ├── gemRedStroked_366d4.png │ │ │ │ │ ├── grassLarge.png_78eee.meta │ │ │ │ │ ├── grassLarge_cace9.png │ │ │ │ │ ├── grassSmall.png_7c905.meta │ │ │ │ │ ├── grassSmall_99888.png │ │ │ │ │ ├── grey.png_e913f.meta │ │ │ │ │ ├── grey_c6c34.png │ │ │ │ │ ├── hero.png_3dfc7.meta │ │ │ │ │ ├── hero_c8eb9.png │ │ │ │ │ ├── keyGreenStroked.png_d5164.meta │ │ │ │ │ ├── keyGreenStroked_4f74b.png │ │ │ │ │ ├── keyRedStroked.png_d8af3.meta │ │ │ │ │ ├── keyRedStroked_9d3df.png │ │ │ │ │ ├── keyYellowStroked.png_f1e71.meta │ │ │ │ │ ├── keyYellowStroked_31cc4.png │ │ │ │ │ ├── platform1.png_df2cc.meta │ │ │ │ │ ├── platform1_0a936.png │ │ │ │ │ ├── platform2.png_b4ca4.meta │ │ │ │ │ ├── platform2_e48a1.png │ │ │ │ │ ├── platform3.png_e4c8a.meta │ │ │ │ │ ├── platform3_3d1cd.png │ │ │ │ │ ├── platform4.png_8ecd6.meta │ │ │ │ │ ├── platform4_a8591.png │ │ │ │ │ ├── platformBase1.png_2ef6a.meta │ │ │ │ │ ├── platformBase1_2a547.png │ │ │ │ │ ├── platformBase2.png_3c9a0.meta │ │ │ │ │ ├── platformBase2_b320e.png │ │ │ │ │ ├── platformBase3.png_db4b5.meta │ │ │ │ │ ├── platformBase3_b6739.png │ │ │ │ │ ├── platformBase4.png_54172.meta │ │ │ │ │ ├── platformBase4_7ae96.png │ │ │ │ │ ├── platformBlock1.png_64cfd.meta │ │ │ │ │ ├── platformBlock1_4a23a.png │ │ │ │ │ ├── platformBlock2.png_12faf.meta │ │ │ │ │ ├── platformBlock2_7b240.png │ │ │ │ │ ├── platformBlock3.png_3ee21.meta │ │ │ │ │ ├── platformBlock3_89e67.png │ │ │ │ │ ├── platformBlock4.png_38544.meta │ │ │ │ │ ├── platformBlock4_c839d.png │ │ │ │ │ ├── platformConnector1.png_ab37c.meta │ │ │ │ │ ├── platformConnector1_73a4b.png │ │ │ │ │ ├── platformConnector2.png_f3838.meta │ │ │ │ │ ├── platformConnector2_366bd.png │ │ │ │ │ ├── platformConnector3.png_a3aa7.meta │ │ │ │ │ ├── platformConnector3_ba0d4.png │ │ │ │ │ ├── platformConnector4.png_87b1f.meta │ │ │ │ │ ├── platformConnector4_d4039.png │ │ │ │ │ ├── pushBlock1.png_de580.meta │ │ │ │ │ ├── pushBlock1_f84eb.png │ │ │ │ │ ├── pushBlock2.png_d56b5.meta │ │ │ │ │ ├── pushBlock2_b1230.png │ │ │ │ │ ├── pushBlock3.png_6b801.meta │ │ │ │ │ ├── pushBlock3_6ca21.png │ │ │ │ │ ├── sandbox.tmx_d50d4.meta │ │ │ │ │ ├── sandbox2.tmx_80b9b.meta │ │ │ │ │ ├── sandbox2_94aa9.tmx │ │ │ │ │ ├── sandbox_1ebbf.tmx │ │ │ │ │ ├── shadow.png_38679.meta │ │ │ │ │ ├── shadow_edcd0.png │ │ │ │ │ ├── shieldStroked.png_d8431.meta │ │ │ │ │ ├── shieldStroked_916f0.png │ │ │ │ │ ├── sign.png_eb632.meta │ │ │ │ │ ├── sign_d0b86.png │ │ │ │ │ ├── skeleton.png_03001.meta │ │ │ │ │ ├── skeleton_e3231.png │ │ │ │ │ ├── swordStroked.png_fa13e.meta │ │ │ │ │ ├── swordStroked_2d7db.png │ │ │ │ │ ├── torch.png_36dc6.meta │ │ │ │ │ ├── torch_5c01b.png │ │ │ │ │ ├── trap.png_a9794.meta │ │ │ │ │ ├── trap_d0edd.png │ │ │ │ │ ├── wallDecor1.png_4f75f.meta │ │ │ │ │ ├── wallDecor1_22c93.png │ │ │ │ │ ├── wallDecor2.png_95359.meta │ │ │ │ │ ├── wallDecor2_72bc6.png │ │ │ │ │ ├── wallDecor3.png_61f95.meta │ │ │ │ │ ├── wallDecor3_d1190.png │ │ │ │ │ ├── window1.png_3bd89.meta │ │ │ │ │ ├── window1_00f8f.png │ │ │ │ │ ├── window2.png_10547.meta │ │ │ │ │ ├── window2_92378.png │ │ │ │ │ ├── window3.png_aff6b.meta │ │ │ │ │ └── window3_a8895.png │ │ │ ├── spines │ │ │ │ ├── spineRatorBin │ │ │ │ │ ├── raptor-pro_24d4f.png │ │ │ │ │ ├── raptor-pro_99de9.atlas │ │ │ │ │ └── raptor-pro_b37c4.skel │ │ │ │ └── spineboy │ │ │ │ │ ├── spineboy_7cd4a.txt │ │ │ │ │ ├── spineboy_abf6b.png │ │ │ │ │ └── spineboy_ddc3c.json │ │ │ └── version.json │ │ ├── favicon.8de18.ico │ │ ├── index.html │ │ ├── main.afd93.js │ │ ├── splash.85cfd.png │ │ ├── src │ │ │ ├── assets │ │ │ │ └── libs │ │ │ │ │ └── fairygui │ │ │ │ │ └── fairygui.5e7f5.js │ │ │ └── settings.c1429.js │ │ ├── style-desktop.dfd76.css │ │ ├── style-mobile.6e9cd.css │ │ └── vconsole.min.bac6b.js │ ├── egf-ccc-full │ │ ├── web-desktop │ │ │ ├── assets │ │ │ │ ├── abtest │ │ │ │ │ ├── config.a4135.json │ │ │ │ │ ├── import │ │ │ │ │ │ ├── c7 │ │ │ │ │ │ │ └── c7906af9-9aa2-4e0d-87ee-ed72b08e32e0.585dc.json │ │ │ │ │ │ └── c9 │ │ │ │ │ │ │ └── c945c145-1075-4b35-ba18-e819e4edf92a.595c7.json │ │ │ │ │ ├── index.a4135.js │ │ │ │ │ └── index.js.map │ │ │ │ ├── internal │ │ │ │ │ ├── config.429bb.json │ │ │ │ │ ├── import │ │ │ │ │ │ └── 0b │ │ │ │ │ │ │ └── 0b6c4470e.c6a45.json │ │ │ │ │ ├── index.429bb.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── native │ │ │ │ │ │ ├── 60 │ │ │ │ │ │ └── 600301aa-3357-4a10-b086-84f011fa32ba.c3a3a.png │ │ │ │ │ │ └── 02 │ │ │ │ │ │ └── 0275e94c-56a7-410f-bd1a-fc7483f7d14a.cea68.png │ │ │ │ ├── main │ │ │ │ │ ├── config.5acb6.json │ │ │ │ │ ├── import │ │ │ │ │ │ ├── 02 │ │ │ │ │ │ │ └── 021098a35.a1f36.json │ │ │ │ │ │ ├── 0a │ │ │ │ │ │ │ └── 0a995c0e8.93cf8.json │ │ │ │ │ │ ├── 0c │ │ │ │ │ │ │ └── 0c339d10f.20110.json │ │ │ │ │ │ ├── 0d │ │ │ │ │ │ │ └── 0da99d4a5.4e05e.json │ │ │ │ │ │ ├── 4f │ │ │ │ │ │ │ └── 4f455f31-4f5f-4925-8497-9d19997cf047.3d73a.json │ │ │ │ │ │ └── bd │ │ │ │ │ │ │ └── bd1c46d4-e6aa-4925-91b7-7bdeb893bfa7.31910.json │ │ │ │ │ ├── index.5acb6.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── native │ │ │ │ │ │ ├── 61 │ │ │ │ │ │ └── 617323dd-11f4-4dd3-8eec-0caf6b3b45b9.6d707.png │ │ │ │ │ │ ├── 71 │ │ │ │ │ │ └── 71561142-4c83-4933-afca-cb7a17f67053.c06a9.png │ │ │ │ │ │ ├── b4 │ │ │ │ │ │ └── b43ff3c2-02bb-4874-81f7-f2dea6970f18.83fcc.png │ │ │ │ │ │ ├── d6 │ │ │ │ │ │ └── d6d3ca85-4681-47c1-b5dd-d036a9d39ea2.d55c2.png │ │ │ │ │ │ ├── d8 │ │ │ │ │ │ └── d81ec8ad-247c-4e62-aa3c-d35c4193c7af.cdbc9.png │ │ │ │ │ │ ├── e8 │ │ │ │ │ │ └── e851e89b-faa2-4484-bea6-5c01dd9f06e2.90cf4.png │ │ │ │ │ │ └── ed │ │ │ │ │ │ └── edd215b9-2796-4a05-aaf5-81f96c9281ce.17df6.png │ │ │ │ └── resources │ │ │ │ │ ├── config.ae6db.json │ │ │ │ │ ├── import │ │ │ │ │ ├── 17 │ │ │ │ │ │ └── 17918d62-21c0-4e38-b891-813d832a8c26.94b5b.json │ │ │ │ │ ├── 78 │ │ │ │ │ │ └── 78b4d20e-4d3b-4332-b2e0-e8374960270d.96c75.json │ │ │ │ │ ├── 01 │ │ │ │ │ │ ├── 0159ef3e4.ad772.json │ │ │ │ │ │ └── 01f8abe1e.95b8c.json │ │ │ │ │ ├── 05 │ │ │ │ │ │ └── 052ec80d0.a3f80.json │ │ │ │ │ ├── 07 │ │ │ │ │ │ └── 076ef229b.21011.json │ │ │ │ │ ├── 0a │ │ │ │ │ │ └── 0a0411b67.db117.json │ │ │ │ │ ├── 0e │ │ │ │ │ │ └── 0e067fe11.5f449.json │ │ │ │ │ ├── 5c │ │ │ │ │ │ └── 5cf8415e-1cc4-4b48-a209-250fa9afa405.5fc06.json │ │ │ │ │ ├── c6 │ │ │ │ │ │ └── c6fbc907-91dd-4efc-bc78-bbe7bcc39f1b.7fef7.json │ │ │ │ │ ├── d0 │ │ │ │ │ │ └── d065790d-8ec5-4386-960d-0ee4fdf14262.b10ff.json │ │ │ │ │ ├── d8 │ │ │ │ │ │ └── d8dc723e-9a3d-4269-af60-f270f49661f9.ed33f.json │ │ │ │ │ ├── dc │ │ │ │ │ │ └── dc7bc231-30ad-4c93-8595-575f64767388.e99ad.json │ │ │ │ │ └── ef │ │ │ │ │ │ └── ef026631-f389-4df7-80e2-fd396c1a4a79.d3955.json │ │ │ │ │ ├── index.ae6db.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── native │ │ │ │ │ ├── 10 │ │ │ │ │ └── 100e9890-7311-4b5e-a2b6-257793e0e54d.6e3dd.png │ │ │ │ │ ├── 64 │ │ │ │ │ └── 64caa3cc-2b4b-492d-bb40-12c39dbe18b8.93256.png │ │ │ │ │ ├── 87 │ │ │ │ │ └── 8753cff0-122c-41e3-904f-3134277b6fd6.75697.png │ │ │ │ │ ├── 00 │ │ │ │ │ └── 004ebebb-f5f5-40de-a3e1-d3f9bcfff782.220aa.png │ │ │ │ │ ├── 0e │ │ │ │ │ └── 0e01a401-0a6d-42ec-8bd0-933cce694d02.2fa9c.png │ │ │ │ │ ├── 1b │ │ │ │ │ └── 1bbaa412-d976-40a8-a8a1-ef1665b057cc.ae236.png │ │ │ │ │ ├── 1f │ │ │ │ │ └── 1f222f89-7486-4c29-9adc-ecc830df064c.d807f.png │ │ │ │ │ ├── 5f │ │ │ │ │ └── 5fa7b1b2-ac9c-4fb8-8666-531c0550553d.929dd.png │ │ │ │ │ ├── 6e │ │ │ │ │ └── 6e056173-d285-473c-b206-40a7fff5386e.6d3cf.png │ │ │ │ │ ├── 7b │ │ │ │ │ └── 7b38d8fa-8c1d-46f8-bbb5-f5cc3db18eba.6bf23.png │ │ │ │ │ ├── 7e │ │ │ │ │ └── 7eb5214b-9694-4dcf-b51e-f7b193156b4f.11bf8.png │ │ │ │ │ ├── 9a │ │ │ │ │ └── 9a3b1b33-d330-44f8-b4b5-fc4bb79fd589.0744d.png │ │ │ │ │ ├── a2 │ │ │ │ │ └── a2e5b07d-33cf-46bf-b8d0-914fe04b7ec7.c26fa.png │ │ │ │ │ ├── a8 │ │ │ │ │ └── a8d7bf3a-9a69-436f-84cd-dd7698437b15.5a652.png │ │ │ │ │ ├── b8 │ │ │ │ │ └── b8dd3521-57fa-4104-a365-83006df6bb45.ab7d9.png │ │ │ │ │ ├── bb │ │ │ │ │ └── bb6571c1-9322-4128-8543-a0e991bd3f4d.e08de.png │ │ │ │ │ ├── bd │ │ │ │ │ └── bda37294-758c-4991-abe8-48deb0a0f6cd.abf6b.png │ │ │ │ │ ├── c2 │ │ │ │ │ └── c298830c-60c8-45ab-8b60-23d0bf50228f.333c5.png │ │ │ │ │ ├── d1 │ │ │ │ │ └── d1af9467-c99d-4f73-8a50-2d4552015f67.1507e.png │ │ │ │ │ ├── d8 │ │ │ │ │ └── d8dc723e-9a3d-4269-af60-f270f49661f9.a2fc1.bin │ │ │ │ │ ├── da │ │ │ │ │ └── da97939a-5133-418c-8f1b-533c4f49f488.f3510.png │ │ │ │ │ ├── dd │ │ │ │ │ └── dd72d507-d7e4-458c-98d6-c682f3cca7e5.de2a4.png │ │ │ │ │ ├── f9 │ │ │ │ │ └── f99f7c13-0fb6-4036-9754-e8109df446dc.04d65.png │ │ │ │ │ ├── fa │ │ │ │ │ └── faa26a6b-9166-495a-b899-4f0668300aa5.f6a1e.png │ │ │ │ │ └── fd │ │ │ │ │ └── fdc9031b-937c-49f1-b8bc-c19d61ef52e2.5dc74.png │ │ │ ├── cocos2d-js.f8e29.js │ │ │ ├── cocos2d-js.js.59a95.map │ │ │ ├── favicon.8de18.ico │ │ │ ├── index.html │ │ │ ├── main.5c4d3.js │ │ │ ├── physics.6a0bd.js │ │ │ ├── splash.85cfd.png │ │ │ ├── src │ │ │ │ ├── assets │ │ │ │ │ ├── editor_fixs │ │ │ │ │ │ └── editor_require_fix.55e37.js │ │ │ │ │ └── libs │ │ │ │ │ │ └── fairygui │ │ │ │ │ │ └── fairygui.7cab6.js │ │ │ │ └── settings.63c85.js │ │ │ ├── style-desktop.dfd76.css │ │ │ └── style-mobile.6e9cd.css │ │ └── web-mobile │ │ │ ├── assets │ │ │ ├── abtest │ │ │ │ ├── config.a4135.json │ │ │ │ ├── import │ │ │ │ │ ├── c7 │ │ │ │ │ │ └── c7906af9-9aa2-4e0d-87ee-ed72b08e32e0.585dc.json │ │ │ │ │ └── c9 │ │ │ │ │ │ └── c945c145-1075-4b35-ba18-e819e4edf92a.595c7.json │ │ │ │ ├── index.a4135.js │ │ │ │ └── index.js.map │ │ │ ├── internal │ │ │ │ ├── config.429bb.json │ │ │ │ ├── import │ │ │ │ │ └── 0b │ │ │ │ │ │ └── 0b6c4470e.c6a45.json │ │ │ │ ├── index.429bb.js │ │ │ │ ├── index.js.map │ │ │ │ └── native │ │ │ │ │ ├── 60 │ │ │ │ │ └── 600301aa-3357-4a10-b086-84f011fa32ba.c3a3a.png │ │ │ │ │ └── 02 │ │ │ │ │ └── 0275e94c-56a7-410f-bd1a-fc7483f7d14a.cea68.png │ │ │ ├── main │ │ │ │ ├── config.5acb6.json │ │ │ │ ├── import │ │ │ │ │ ├── 02 │ │ │ │ │ │ └── 021098a35.a1f36.json │ │ │ │ │ ├── 0a │ │ │ │ │ │ └── 0a995c0e8.93cf8.json │ │ │ │ │ ├── 0c │ │ │ │ │ │ └── 0c339d10f.20110.json │ │ │ │ │ ├── 0d │ │ │ │ │ │ └── 0da99d4a5.4e05e.json │ │ │ │ │ ├── 4f │ │ │ │ │ │ └── 4f455f31-4f5f-4925-8497-9d19997cf047.3d73a.json │ │ │ │ │ └── bd │ │ │ │ │ │ └── bd1c46d4-e6aa-4925-91b7-7bdeb893bfa7.31910.json │ │ │ │ ├── index.5acb6.js │ │ │ │ ├── index.js.map │ │ │ │ └── native │ │ │ │ │ ├── 61 │ │ │ │ │ └── 617323dd-11f4-4dd3-8eec-0caf6b3b45b9.6d707.png │ │ │ │ │ ├── 71 │ │ │ │ │ └── 71561142-4c83-4933-afca-cb7a17f67053.c06a9.png │ │ │ │ │ ├── b4 │ │ │ │ │ └── b43ff3c2-02bb-4874-81f7-f2dea6970f18.83fcc.png │ │ │ │ │ ├── d6 │ │ │ │ │ └── d6d3ca85-4681-47c1-b5dd-d036a9d39ea2.d55c2.png │ │ │ │ │ ├── d8 │ │ │ │ │ └── d81ec8ad-247c-4e62-aa3c-d35c4193c7af.cdbc9.png │ │ │ │ │ ├── e8 │ │ │ │ │ └── e851e89b-faa2-4484-bea6-5c01dd9f06e2.90cf4.png │ │ │ │ │ └── ed │ │ │ │ │ └── edd215b9-2796-4a05-aaf5-81f96c9281ce.17df6.png │ │ │ └── resources │ │ │ │ ├── config.ae6db.json │ │ │ │ ├── import │ │ │ │ ├── 17 │ │ │ │ │ └── 17918d62-21c0-4e38-b891-813d832a8c26.94b5b.json │ │ │ │ ├── 78 │ │ │ │ │ └── 78b4d20e-4d3b-4332-b2e0-e8374960270d.96c75.json │ │ │ │ ├── 01 │ │ │ │ │ ├── 0159ef3e4.ad772.json │ │ │ │ │ └── 01f8abe1e.95b8c.json │ │ │ │ ├── 05 │ │ │ │ │ └── 052ec80d0.a3f80.json │ │ │ │ ├── 07 │ │ │ │ │ └── 076ef229b.21011.json │ │ │ │ ├── 0a │ │ │ │ │ └── 0a0411b67.db117.json │ │ │ │ ├── 0e │ │ │ │ │ └── 0e067fe11.5f449.json │ │ │ │ ├── 5c │ │ │ │ │ └── 5cf8415e-1cc4-4b48-a209-250fa9afa405.5fc06.json │ │ │ │ ├── c6 │ │ │ │ │ └── c6fbc907-91dd-4efc-bc78-bbe7bcc39f1b.7fef7.json │ │ │ │ ├── d0 │ │ │ │ │ └── d065790d-8ec5-4386-960d-0ee4fdf14262.b10ff.json │ │ │ │ ├── d8 │ │ │ │ │ └── d8dc723e-9a3d-4269-af60-f270f49661f9.ed33f.json │ │ │ │ ├── dc │ │ │ │ │ └── dc7bc231-30ad-4c93-8595-575f64767388.e99ad.json │ │ │ │ └── ef │ │ │ │ │ └── ef026631-f389-4df7-80e2-fd396c1a4a79.d3955.json │ │ │ │ ├── index.ae6db.js │ │ │ │ ├── index.js.map │ │ │ │ └── native │ │ │ │ ├── 10 │ │ │ │ └── 100e9890-7311-4b5e-a2b6-257793e0e54d.6e3dd.png │ │ │ │ ├── 64 │ │ │ │ └── 64caa3cc-2b4b-492d-bb40-12c39dbe18b8.93256.png │ │ │ │ ├── 87 │ │ │ │ └── 8753cff0-122c-41e3-904f-3134277b6fd6.75697.png │ │ │ │ ├── 00 │ │ │ │ └── 004ebebb-f5f5-40de-a3e1-d3f9bcfff782.220aa.png │ │ │ │ ├── 0e │ │ │ │ └── 0e01a401-0a6d-42ec-8bd0-933cce694d02.2fa9c.png │ │ │ │ ├── 1b │ │ │ │ └── 1bbaa412-d976-40a8-a8a1-ef1665b057cc.ae236.png │ │ │ │ ├── 1f │ │ │ │ └── 1f222f89-7486-4c29-9adc-ecc830df064c.d807f.png │ │ │ │ ├── 5f │ │ │ │ └── 5fa7b1b2-ac9c-4fb8-8666-531c0550553d.929dd.png │ │ │ │ ├── 6e │ │ │ │ └── 6e056173-d285-473c-b206-40a7fff5386e.6d3cf.png │ │ │ │ ├── 7b │ │ │ │ └── 7b38d8fa-8c1d-46f8-bbb5-f5cc3db18eba.6bf23.png │ │ │ │ ├── 7e │ │ │ │ └── 7eb5214b-9694-4dcf-b51e-f7b193156b4f.11bf8.png │ │ │ │ ├── 9a │ │ │ │ └── 9a3b1b33-d330-44f8-b4b5-fc4bb79fd589.0744d.png │ │ │ │ ├── a2 │ │ │ │ └── a2e5b07d-33cf-46bf-b8d0-914fe04b7ec7.c26fa.png │ │ │ │ ├── a8 │ │ │ │ └── a8d7bf3a-9a69-436f-84cd-dd7698437b15.5a652.png │ │ │ │ ├── b8 │ │ │ │ └── b8dd3521-57fa-4104-a365-83006df6bb45.ab7d9.png │ │ │ │ ├── bb │ │ │ │ └── bb6571c1-9322-4128-8543-a0e991bd3f4d.e08de.png │ │ │ │ ├── bd │ │ │ │ └── bda37294-758c-4991-abe8-48deb0a0f6cd.abf6b.png │ │ │ │ ├── c2 │ │ │ │ └── c298830c-60c8-45ab-8b60-23d0bf50228f.333c5.png │ │ │ │ ├── d1 │ │ │ │ └── d1af9467-c99d-4f73-8a50-2d4552015f67.1507e.png │ │ │ │ ├── d8 │ │ │ │ └── d8dc723e-9a3d-4269-af60-f270f49661f9.a2fc1.bin │ │ │ │ ├── da │ │ │ │ └── da97939a-5133-418c-8f1b-533c4f49f488.f3510.png │ │ │ │ ├── dd │ │ │ │ └── dd72d507-d7e4-458c-98d6-c682f3cca7e5.de2a4.png │ │ │ │ ├── f9 │ │ │ │ └── f99f7c13-0fb6-4036-9754-e8109df446dc.04d65.png │ │ │ │ ├── fa │ │ │ │ └── faa26a6b-9166-495a-b899-4f0668300aa5.f6a1e.png │ │ │ │ └── fd │ │ │ │ └── fdc9031b-937c-49f1-b8bc-c19d61ef52e2.5dc74.png │ │ │ ├── cocos2d-js.cfde2.js │ │ │ ├── cocos2d-js.js.ebeb7.map │ │ │ ├── favicon.8de18.ico │ │ │ ├── index.html │ │ │ ├── main.7f497.js │ │ │ ├── physics.6a0bd.js │ │ │ ├── splash.85cfd.png │ │ │ ├── src │ │ │ ├── assets │ │ │ │ ├── editor_fixs │ │ │ │ │ └── editor_require_fix.55e37.js │ │ │ │ └── libs │ │ │ │ │ └── fairygui │ │ │ │ │ └── fairygui.7cab6.js │ │ │ └── settings.fd5ae.js │ │ │ ├── style-desktop.dfd76.css │ │ │ └── style-mobile.6e9cd.css │ └── egf-ccc3-full │ │ ├── web-desktop │ │ ├── application.9449c.js │ │ ├── assets │ │ │ ├── abtest │ │ │ │ ├── config.4a6f0.json │ │ │ │ ├── import │ │ │ │ │ ├── c7 │ │ │ │ │ │ └── c7906af9-9aa2-4e0d-87ee-ed72b08e32e0.0c8f2.json │ │ │ │ │ └── c9 │ │ │ │ │ │ └── c945c145-1075-4b35-ba18-e819e4edf92a.d925e.json │ │ │ │ ├── index.4a6f0.js │ │ │ │ └── index.js.map │ │ │ ├── main │ │ │ │ ├── config.83e63.json │ │ │ │ ├── import │ │ │ │ │ ├── 03 │ │ │ │ │ │ └── 03bdfb516.35362.json │ │ │ │ │ ├── 09 │ │ │ │ │ │ └── 09f6e6aa8.1b669.json │ │ │ │ │ ├── 0a │ │ │ │ │ │ └── 0a9cf460c.63e82.json │ │ │ │ │ ├── 0f │ │ │ │ │ │ ├── 0f1681344.c39c3.json │ │ │ │ │ │ └── 0f9445b90.17fd4.json │ │ │ │ │ ├── 4f │ │ │ │ │ │ └── 4f455f31-4f5f-4925-8497-9d19997cf047.49e18.json │ │ │ │ │ ├── bd │ │ │ │ │ │ └── bd1c46d4-e6aa-4925-91b7-7bdeb893bfa7.c4cfc.json │ │ │ │ │ └── fd │ │ │ │ │ │ └── fd8ec536-a354-4a17-9c74-4f3883c378c8.731f4.json │ │ │ │ ├── index.83e63.js │ │ │ │ ├── index.js.map │ │ │ │ └── native │ │ │ │ │ ├── 20 │ │ │ │ │ └── 20835ba4-6145-4fbc-a58a-051ce700aa3e.90cf4.png │ │ │ │ │ ├── 54 │ │ │ │ │ └── 544e49d6-3f05-4fa8-9a9e-091f98fc2ce8.83fcc.png │ │ │ │ │ ├── 95 │ │ │ │ │ └── 951249e0-9f16-456d-8b85-a6ca954da16b.c06a9.png │ │ │ │ │ ├── af │ │ │ │ │ └── afc47931-f066-46b0-90be-9fe61f213428.d55c2.png │ │ │ │ │ ├── b7 │ │ │ │ │ └── b730527c-3233-41c2-aaf7-7cdab58f9749.cdbc9.png │ │ │ │ │ ├── bd │ │ │ │ │ └── bd1bcaba-bd7d-4a71-b143-997c882383e4.17df6.png │ │ │ │ │ └── ff │ │ │ │ │ └── ffb88a8f-af62-48f4-8f1d-3cb606443a43.6d707.png │ │ │ └── resources │ │ │ │ ├── config.9433e.json │ │ │ │ ├── import │ │ │ │ ├── 10 │ │ │ │ │ └── 100e9890-7311-4b5e-a2b6-257793e0e54d@f9941.ee3ea.json │ │ │ │ ├── 64 │ │ │ │ │ └── 64caa3cc-2b4b-492d-bb40-12c39dbe18b8@f9941.e5930.json │ │ │ │ ├── 78 │ │ │ │ │ └── 78b4d20e-4d3b-4332-b2e0-e8374960270d.a77ef.json │ │ │ │ ├── 87 │ │ │ │ │ └── 8753cff0-122c-41e3-904f-3134277b6fd6@f9941.2d807.json │ │ │ │ ├── 00 │ │ │ │ │ └── 004ebebb-f5f5-40de-a3e1-d3f9bcfff782@f9941.6d4b8.json │ │ │ │ ├── 01 │ │ │ │ │ └── 0159ef3e4.2a803.json │ │ │ │ ├── 02 │ │ │ │ │ └── 026cf3004.33a01.json │ │ │ │ ├── 03 │ │ │ │ │ └── 03dc247fd.c20e2.json │ │ │ │ ├── 06 │ │ │ │ │ └── 06b6751c7.fbc49.json │ │ │ │ ├── 09 │ │ │ │ │ └── 093e924f6.a581f.json │ │ │ │ ├── 0b │ │ │ │ │ └── 0bd9e6a36.08d5f.json │ │ │ │ ├── 0c │ │ │ │ │ └── 0c2aa3507.93416.json │ │ │ │ ├── 0e │ │ │ │ │ ├── 0e01a401-0a6d-42ec-8bd0-933cce694d02@f9941.eb4b4.json │ │ │ │ │ └── 0e067fe11.e21f6.json │ │ │ │ ├── 1b │ │ │ │ │ └── 1bbaa412-d976-40a8-a8a1-ef1665b057cc@f9941.41835.json │ │ │ │ ├── 5f │ │ │ │ │ └── 5fa7b1b2-ac9c-4fb8-8666-531c0550553d@f9941.5e86f.json │ │ │ │ ├── 7b │ │ │ │ │ └── 7b38d8fa-8c1d-46f8-bbb5-f5cc3db18eba@f9941.c9a8c.json │ │ │ │ ├── 7e │ │ │ │ │ └── 7eb5214b-9694-4dcf-b51e-f7b193156b4f@f9941.f3159.json │ │ │ │ ├── 9a │ │ │ │ │ └── 9a3b1b33-d330-44f8-b4b5-fc4bb79fd589@f9941.a3418.json │ │ │ │ ├── a2 │ │ │ │ │ └── a2e5b07d-33cf-46bf-b8d0-914fe04b7ec7@f9941.adce6.json │ │ │ │ ├── a8 │ │ │ │ │ └── a8d7bf3a-9a69-436f-84cd-dd7698437b15@f9941.615fb.json │ │ │ │ ├── b8 │ │ │ │ │ └── b8dd3521-57fa-4104-a365-83006df6bb45@f9941.b4545.json │ │ │ │ ├── d8 │ │ │ │ │ └── d8dc723e-9a3d-4269-af60-f270f49661f9.cc6c3.json │ │ │ │ ├── da │ │ │ │ │ └── da97939a-5133-418c-8f1b-533c4f49f488@f9941.3801e.json │ │ │ │ ├── dd │ │ │ │ │ └── dd72d507-d7e4-458c-98d6-c682f3cca7e5@f9941.0d120.json │ │ │ │ ├── f9 │ │ │ │ │ └── f99f7c13-0fb6-4036-9754-e8109df446dc@f9941.8bce1.json │ │ │ │ ├── fa │ │ │ │ │ └── faa26a6b-9166-495a-b899-4f0668300aa5@f9941.7b105.json │ │ │ │ └── fd │ │ │ │ │ └── fdc9031b-937c-49f1-b8bc-c19d61ef52e2@f9941.874dc.json │ │ │ │ ├── index.9433e.js │ │ │ │ ├── index.js.map │ │ │ │ └── native │ │ │ │ ├── 10 │ │ │ │ └── 100e9890-7311-4b5e-a2b6-257793e0e54d.6e3dd.png │ │ │ │ ├── 57 │ │ │ │ └── 57520716-48c8-4a19-8acf-41c9f8777fb0.6d3cf.png │ │ │ │ ├── 64 │ │ │ │ └── 64caa3cc-2b4b-492d-bb40-12c39dbe18b8.93256.png │ │ │ │ ├── 87 │ │ │ │ └── 8753cff0-122c-41e3-904f-3134277b6fd6.75697.png │ │ │ │ ├── 00 │ │ │ │ └── 004ebebb-f5f5-40de-a3e1-d3f9bcfff782.220aa.png │ │ │ │ ├── 0e │ │ │ │ └── 0e01a401-0a6d-42ec-8bd0-933cce694d02.2fa9c.png │ │ │ │ ├── 1b │ │ │ │ └── 1bbaa412-d976-40a8-a8a1-ef1665b057cc.ae236.png │ │ │ │ ├── 1f │ │ │ │ └── 1f222f89-7486-4c29-9adc-ecc830df064c.d807f.png │ │ │ │ ├── 5f │ │ │ │ └── 5fa7b1b2-ac9c-4fb8-8666-531c0550553d.929dd.png │ │ │ │ ├── 7b │ │ │ │ └── 7b38d8fa-8c1d-46f8-bbb5-f5cc3db18eba.6bf23.png │ │ │ │ ├── 7d │ │ │ │ └── 7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca.cea68.png │ │ │ │ ├── 7e │ │ │ │ └── 7eb5214b-9694-4dcf-b51e-f7b193156b4f.11bf8.png │ │ │ │ ├── 9a │ │ │ │ └── 9a3b1b33-d330-44f8-b4b5-fc4bb79fd589.0744d.png │ │ │ │ ├── a2 │ │ │ │ └── a2e5b07d-33cf-46bf-b8d0-914fe04b7ec7.c26fa.png │ │ │ │ ├── a8 │ │ │ │ └── a8d7bf3a-9a69-436f-84cd-dd7698437b15.5a652.png │ │ │ │ ├── b8 │ │ │ │ └── b8dd3521-57fa-4104-a365-83006df6bb45.ab7d9.png │ │ │ │ ├── bb │ │ │ │ └── bb6571c1-9322-4128-8543-a0e991bd3f4d.e08de.png │ │ │ │ ├── bd │ │ │ │ └── bda37294-758c-4991-abe8-48deb0a0f6cd.abf6b.png │ │ │ │ ├── c2 │ │ │ │ └── c298830c-60c8-45ab-8b60-23d0bf50228f.333c5.png │ │ │ │ ├── d1 │ │ │ │ └── d1af9467-c99d-4f73-8a50-2d4552015f67.1507e.png │ │ │ │ ├── d8 │ │ │ │ └── d8dc723e-9a3d-4269-af60-f270f49661f9.a2fc1.bin │ │ │ │ ├── da │ │ │ │ └── da97939a-5133-418c-8f1b-533c4f49f488.f3510.png │ │ │ │ ├── dd │ │ │ │ └── dd72d507-d7e4-458c-98d6-c682f3cca7e5.de2a4.png │ │ │ │ ├── f9 │ │ │ │ └── f99f7c13-0fb6-4036-9754-e8109df446dc.04d65.png │ │ │ │ ├── fa │ │ │ │ └── faa26a6b-9166-495a-b899-4f0668300aa5.f6a1e.png │ │ │ │ └── fd │ │ │ │ └── fdc9031b-937c-49f1-b8bc-c19d61ef52e2.5dc74.png │ │ ├── cocos-js │ │ │ ├── _commonjsHelpers-364bf34e.js │ │ │ ├── _commonjsHelpers-364bf34e.js.map │ │ │ ├── ammo-70e20070.js │ │ │ ├── ammo-70e20070.js.map │ │ │ ├── ammo-instantiated-d5a22fbd.js │ │ │ ├── ammo-instantiated-d5a22fbd.js.map │ │ │ ├── ammo.wasm-913cdace.js │ │ │ ├── ammo.wasm-913cdace.js.map │ │ │ ├── assets │ │ │ │ └── ammo.wasm-2f572f72.wasm │ │ │ ├── cc.js │ │ │ ├── cc.js.map │ │ │ ├── wait-for-ammo-instantiation.js │ │ │ └── wait-for-ammo-instantiation.js.map │ │ ├── favicon.ico │ │ ├── index.1c02a.js │ │ ├── index.html │ │ ├── src │ │ │ ├── chunks │ │ │ │ ├── bundle.js │ │ │ │ └── bundle.js.map │ │ │ ├── import-map.json │ │ │ ├── polyfills.bundle.js │ │ │ ├── settings.18a1e.json │ │ │ ├── system.bundle.js │ │ │ └── system.bundle.js.map │ │ └── style.css │ │ └── web-mobile │ │ ├── application.7025e.js │ │ ├── assets │ │ ├── abtest │ │ │ ├── config.e8d13.json │ │ │ ├── import │ │ │ │ ├── c7 │ │ │ │ │ └── c7906af9-9aa2-4e0d-87ee-ed72b08e32e0.0c8f2.json │ │ │ │ └── c9 │ │ │ │ │ └── c945c145-1075-4b35-ba18-e819e4edf92a.d925e.json │ │ │ ├── index.e8d13.js │ │ │ └── index.js.map │ │ ├── main │ │ │ ├── config.02ccb.json │ │ │ ├── import │ │ │ │ ├── 03 │ │ │ │ │ └── 03bdfb516.35362.json │ │ │ │ ├── 09 │ │ │ │ │ └── 09f6e6aa8.1b669.json │ │ │ │ ├── 0a │ │ │ │ │ └── 0a9cf460c.63e82.json │ │ │ │ ├── 0f │ │ │ │ │ ├── 0f1681344.c39c3.json │ │ │ │ │ └── 0f9445b90.17fd4.json │ │ │ │ ├── 4f │ │ │ │ │ └── 4f455f31-4f5f-4925-8497-9d19997cf047.49e18.json │ │ │ │ ├── bd │ │ │ │ │ └── bd1c46d4-e6aa-4925-91b7-7bdeb893bfa7.c4cfc.json │ │ │ │ └── fd │ │ │ │ │ └── fd8ec536-a354-4a17-9c74-4f3883c378c8.731f4.json │ │ │ ├── index.02ccb.js │ │ │ ├── index.js.map │ │ │ └── native │ │ │ │ ├── 20 │ │ │ │ └── 20835ba4-6145-4fbc-a58a-051ce700aa3e.90cf4.png │ │ │ │ ├── 54 │ │ │ │ └── 544e49d6-3f05-4fa8-9a9e-091f98fc2ce8.83fcc.png │ │ │ │ ├── 95 │ │ │ │ └── 951249e0-9f16-456d-8b85-a6ca954da16b.c06a9.png │ │ │ │ ├── af │ │ │ │ └── afc47931-f066-46b0-90be-9fe61f213428.d55c2.png │ │ │ │ ├── b7 │ │ │ │ └── b730527c-3233-41c2-aaf7-7cdab58f9749.cdbc9.png │ │ │ │ ├── bd │ │ │ │ └── bd1bcaba-bd7d-4a71-b143-997c882383e4.17df6.png │ │ │ │ └── ff │ │ │ │ └── ffb88a8f-af62-48f4-8f1d-3cb606443a43.6d707.png │ │ └── resources │ │ │ ├── config.9433e.json │ │ │ ├── import │ │ │ ├── 10 │ │ │ │ └── 100e9890-7311-4b5e-a2b6-257793e0e54d@f9941.ee3ea.json │ │ │ ├── 64 │ │ │ │ └── 64caa3cc-2b4b-492d-bb40-12c39dbe18b8@f9941.e5930.json │ │ │ ├── 78 │ │ │ │ └── 78b4d20e-4d3b-4332-b2e0-e8374960270d.a77ef.json │ │ │ ├── 87 │ │ │ │ └── 8753cff0-122c-41e3-904f-3134277b6fd6@f9941.2d807.json │ │ │ ├── 00 │ │ │ │ └── 004ebebb-f5f5-40de-a3e1-d3f9bcfff782@f9941.6d4b8.json │ │ │ ├── 01 │ │ │ │ └── 0159ef3e4.2a803.json │ │ │ ├── 02 │ │ │ │ └── 026cf3004.33a01.json │ │ │ ├── 03 │ │ │ │ └── 03dc247fd.c20e2.json │ │ │ ├── 06 │ │ │ │ └── 06b6751c7.fbc49.json │ │ │ ├── 09 │ │ │ │ └── 093e924f6.a581f.json │ │ │ ├── 0b │ │ │ │ └── 0bd9e6a36.08d5f.json │ │ │ ├── 0c │ │ │ │ └── 0c2aa3507.93416.json │ │ │ ├── 0e │ │ │ │ ├── 0e01a401-0a6d-42ec-8bd0-933cce694d02@f9941.eb4b4.json │ │ │ │ └── 0e067fe11.e21f6.json │ │ │ ├── 1b │ │ │ │ └── 1bbaa412-d976-40a8-a8a1-ef1665b057cc@f9941.41835.json │ │ │ ├── 5f │ │ │ │ └── 5fa7b1b2-ac9c-4fb8-8666-531c0550553d@f9941.5e86f.json │ │ │ ├── 7b │ │ │ │ └── 7b38d8fa-8c1d-46f8-bbb5-f5cc3db18eba@f9941.c9a8c.json │ │ │ ├── 7e │ │ │ │ └── 7eb5214b-9694-4dcf-b51e-f7b193156b4f@f9941.f3159.json │ │ │ ├── 9a │ │ │ │ └── 9a3b1b33-d330-44f8-b4b5-fc4bb79fd589@f9941.a3418.json │ │ │ ├── a2 │ │ │ │ └── a2e5b07d-33cf-46bf-b8d0-914fe04b7ec7@f9941.adce6.json │ │ │ ├── a8 │ │ │ │ └── a8d7bf3a-9a69-436f-84cd-dd7698437b15@f9941.615fb.json │ │ │ ├── b8 │ │ │ │ └── b8dd3521-57fa-4104-a365-83006df6bb45@f9941.b4545.json │ │ │ ├── d8 │ │ │ │ └── d8dc723e-9a3d-4269-af60-f270f49661f9.cc6c3.json │ │ │ ├── da │ │ │ │ └── da97939a-5133-418c-8f1b-533c4f49f488@f9941.3801e.json │ │ │ ├── dd │ │ │ │ └── dd72d507-d7e4-458c-98d6-c682f3cca7e5@f9941.0d120.json │ │ │ ├── f9 │ │ │ │ └── f99f7c13-0fb6-4036-9754-e8109df446dc@f9941.8bce1.json │ │ │ ├── fa │ │ │ │ └── faa26a6b-9166-495a-b899-4f0668300aa5@f9941.7b105.json │ │ │ └── fd │ │ │ │ └── fdc9031b-937c-49f1-b8bc-c19d61ef52e2@f9941.874dc.json │ │ │ ├── index.9433e.js │ │ │ ├── index.js.map │ │ │ └── native │ │ │ ├── 10 │ │ │ └── 100e9890-7311-4b5e-a2b6-257793e0e54d.6e3dd.png │ │ │ ├── 57 │ │ │ └── 57520716-48c8-4a19-8acf-41c9f8777fb0.6d3cf.png │ │ │ ├── 64 │ │ │ └── 64caa3cc-2b4b-492d-bb40-12c39dbe18b8.93256.png │ │ │ ├── 87 │ │ │ └── 8753cff0-122c-41e3-904f-3134277b6fd6.75697.png │ │ │ ├── 00 │ │ │ └── 004ebebb-f5f5-40de-a3e1-d3f9bcfff782.220aa.png │ │ │ ├── 0e │ │ │ └── 0e01a401-0a6d-42ec-8bd0-933cce694d02.2fa9c.png │ │ │ ├── 1b │ │ │ └── 1bbaa412-d976-40a8-a8a1-ef1665b057cc.ae236.png │ │ │ ├── 1f │ │ │ └── 1f222f89-7486-4c29-9adc-ecc830df064c.d807f.png │ │ │ ├── 5f │ │ │ └── 5fa7b1b2-ac9c-4fb8-8666-531c0550553d.929dd.png │ │ │ ├── 7b │ │ │ └── 7b38d8fa-8c1d-46f8-bbb5-f5cc3db18eba.6bf23.png │ │ │ ├── 7d │ │ │ └── 7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca.cea68.png │ │ │ ├── 7e │ │ │ └── 7eb5214b-9694-4dcf-b51e-f7b193156b4f.11bf8.png │ │ │ ├── 9a │ │ │ └── 9a3b1b33-d330-44f8-b4b5-fc4bb79fd589.0744d.png │ │ │ ├── a2 │ │ │ └── a2e5b07d-33cf-46bf-b8d0-914fe04b7ec7.c26fa.png │ │ │ ├── a8 │ │ │ └── a8d7bf3a-9a69-436f-84cd-dd7698437b15.5a652.png │ │ │ ├── b8 │ │ │ └── b8dd3521-57fa-4104-a365-83006df6bb45.ab7d9.png │ │ │ ├── bb │ │ │ └── bb6571c1-9322-4128-8543-a0e991bd3f4d.e08de.png │ │ │ ├── bd │ │ │ └── bda37294-758c-4991-abe8-48deb0a0f6cd.abf6b.png │ │ │ ├── c2 │ │ │ └── c298830c-60c8-45ab-8b60-23d0bf50228f.333c5.png │ │ │ ├── d1 │ │ │ └── d1af9467-c99d-4f73-8a50-2d4552015f67.1507e.png │ │ │ ├── d8 │ │ │ └── d8dc723e-9a3d-4269-af60-f270f49661f9.a2fc1.bin │ │ │ ├── da │ │ │ └── da97939a-5133-418c-8f1b-533c4f49f488.f3510.png │ │ │ ├── dd │ │ │ └── dd72d507-d7e4-458c-98d6-c682f3cca7e5.de2a4.png │ │ │ ├── f9 │ │ │ └── f99f7c13-0fb6-4036-9754-e8109df446dc.04d65.png │ │ │ ├── fa │ │ │ └── faa26a6b-9166-495a-b899-4f0668300aa5.f6a1e.png │ │ │ └── fd │ │ │ └── fdc9031b-937c-49f1-b8bc-c19d61ef52e2.5dc74.png │ │ ├── cocos-js │ │ ├── _commonjsHelpers-364bf34e.js │ │ ├── _commonjsHelpers-364bf34e.js.map │ │ ├── ammo-70e20070.js │ │ ├── ammo-70e20070.js.map │ │ ├── ammo-instantiated-d5a22fbd.js │ │ ├── ammo-instantiated-d5a22fbd.js.map │ │ ├── ammo.wasm-913cdace.js │ │ ├── ammo.wasm-913cdace.js.map │ │ ├── assets │ │ │ └── ammo.wasm-2f572f72.wasm │ │ ├── cc.js │ │ ├── cc.js.map │ │ ├── wait-for-ammo-instantiation.js │ │ └── wait-for-ammo-instantiation.js.map │ │ ├── index.a6bcf.js │ │ ├── index.html │ │ ├── src │ │ ├── chunks │ │ │ ├── bundle.js │ │ │ └── bundle.js.map │ │ ├── import-map.json │ │ ├── polyfills.bundle.js │ │ ├── settings.6aab3.json │ │ ├── system.bundle.js │ │ └── system.bundle.js.map │ │ └── style.css ├── index.html ├── light-icon.png ├── light-icon.svg ├── packages │ ├── broadcast │ │ ├── CHANGELOG.md │ │ └── README.md │ ├── c3d-comp-template │ │ ├── CHANGELOG.md │ │ └── README.md │ ├── cli │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ └── package-template │ │ │ └── README.md │ ├── core │ │ ├── CHANGELOG.md │ │ └── README.md │ ├── display-ctrl │ │ ├── CHANGELOG.md │ │ └── README.md │ ├── dpctrl-c3d │ │ ├── CHANGELOG.md │ │ └── README.md │ ├── dpctrl-ccc │ │ ├── CHANGELOG.md │ │ └── README.md │ ├── dpctrl-fgui │ │ ├── CHANGELOG.md │ │ └── README.md │ ├── dpctrl-fguicc │ │ ├── CHANGELOG.md │ │ └── README.md │ ├── egf-protobuf-cli │ │ ├── CHANGELOG.md │ │ └── README.md │ ├── enet-pbws │ │ ├── CHANGELOG.md │ │ └── README.md │ ├── enet-pinus-pb │ │ ├── CHANGELOG.md │ │ └── README.md │ ├── enet │ │ ├── CHANGELOG.md │ │ └── README.md │ ├── layer │ │ ├── CHANGELOG.md │ │ └── README.md │ └── obj-pool │ │ ├── CHANGELOG.md │ │ └── README.md ├── quick-start.md ├── testReport │ ├── clover.xml │ ├── coverage-final.json │ ├── lcov-report │ │ ├── base.css │ │ ├── block-navigation.js │ │ ├── broadcast │ │ │ └── src │ │ │ │ ├── broadcast.ts.html │ │ │ │ ├── index.html │ │ │ │ └── index.ts.html │ │ ├── core │ │ │ ├── __tests__ │ │ │ │ ├── index.html │ │ │ │ └── test-bootloaders.ts.html │ │ │ └── src │ │ │ │ ├── egf-app.ts.html │ │ │ │ └── index.html │ │ ├── display-ctrl │ │ │ ├── __tests__ │ │ │ │ ├── async-show-dpctrl.ts.html │ │ │ │ ├── base-dp-ctrl.ts.html │ │ │ │ ├── custom-res-handler-dpc.ts.html │ │ │ │ ├── index.html │ │ │ │ ├── no-res-dpctrl.ts.html │ │ │ │ ├── no-typekey-dpctrl.ts.html │ │ │ │ ├── ress-in-class-dpc.ts.html │ │ │ │ ├── transfer-param-dpcs.ts.html │ │ │ │ └── with-res-dpctrl.ts.html │ │ │ └── src │ │ │ │ ├── dp-ctrl-mgr.ts.html │ │ │ │ ├── index.html │ │ │ │ └── index.ts.html │ │ ├── enet-pbws │ │ │ ├── __tests__ │ │ │ │ └── protojs │ │ │ │ │ ├── index.html │ │ │ │ │ └── proto_bundle.js.html │ │ │ ├── protobuf │ │ │ │ └── library │ │ │ │ │ ├── index.html │ │ │ │ │ └── protobuf-library.js.html │ │ │ └── src │ │ │ │ ├── byte.ts.html │ │ │ │ ├── index.html │ │ │ │ ├── index.ts.html │ │ │ │ ├── pb-proto-handler.ts.html │ │ │ │ └── pkg-type.ts.html │ │ ├── enet │ │ │ ├── dist │ │ │ │ └── cjs │ │ │ │ │ └── lib │ │ │ │ │ ├── index.html │ │ │ │ │ └── index.js.html │ │ │ └── src │ │ │ │ ├── default-net-event-handler.ts.html │ │ │ │ ├── index.html │ │ │ │ ├── index.ts.html │ │ │ │ ├── net-node.ts.html │ │ │ │ ├── pkg-type.ts.html │ │ │ │ ├── socketStateType.ts.html │ │ │ │ └── wsocket.ts.html │ │ ├── index.html │ │ ├── layer │ │ │ ├── __tests__ │ │ │ │ ├── index.html │ │ │ │ ├── test-custom-layer-lmp.ts.html │ │ │ │ ├── test-layer-lmp.ts.html │ │ │ │ ├── test-layer-type.ts.html │ │ │ │ └── test-render-node.ts.html │ │ │ └── src │ │ │ │ ├── index.html │ │ │ │ └── layer-mgr.ts.html │ │ ├── obj-pool │ │ │ └── src │ │ │ │ ├── index.html │ │ │ │ ├── index.ts.html │ │ │ │ ├── obj-pool-mgr.ts.html │ │ │ │ └── obj-pool.ts.html │ │ ├── prettify.css │ │ ├── prettify.js │ │ ├── sort-arrow-sprite.png │ │ └── sorter.js │ └── lcov.info └── tool-packages │ ├── excel2all-cli │ ├── CHANGELOG.md │ └── README.md │ └── excel2all │ ├── CHANGELOG.md │ └── README.md ├── examples ├── .gitattributes ├── egf-ccc-full │ ├── .gitignore │ ├── CHANGELOG.md │ ├── README.md │ ├── assets │ │ ├── Main.fire │ │ ├── Main.fire.meta │ │ ├── editor_fixs.meta │ │ ├── editor_fixs │ │ │ ├── editor_require_fix.js │ │ │ └── editor_require_fix.js.meta │ │ ├── libs.meta │ │ ├── libs │ │ │ ├── fairygui.meta │ │ │ └── fairygui │ │ │ │ ├── fairygui.js │ │ │ │ └── fairygui.js.meta │ │ ├── resources.meta │ │ ├── resources │ │ │ ├── display-ctrl-test-views.meta │ │ │ ├── display-ctrl-test-views │ │ │ │ ├── AnimView.prefab │ │ │ │ ├── AnimView.prefab.meta │ │ │ │ ├── CustomResHandleView.prefab │ │ │ │ ├── CustomResHandleView.prefab.meta │ │ │ │ ├── DepResView.prefab │ │ │ │ ├── DepResView.prefab.meta │ │ │ │ ├── LoadingView.prefab │ │ │ │ ├── LoadingView.prefab.meta │ │ │ │ ├── MutiInsView.prefab │ │ │ │ └── MutiInsView.prefab.meta │ │ │ ├── fairygui.meta │ │ │ ├── fairygui │ │ │ │ ├── Icons.meta │ │ │ │ ├── Icons │ │ │ │ │ ├── i0.png │ │ │ │ │ ├── i0.png.meta │ │ │ │ │ ├── i1.png │ │ │ │ │ ├── i1.png.meta │ │ │ │ │ ├── i2.png │ │ │ │ │ ├── i2.png.meta │ │ │ │ │ ├── i3.png │ │ │ │ │ ├── i3.png.meta │ │ │ │ │ ├── i4.png │ │ │ │ │ ├── i4.png.meta │ │ │ │ │ ├── i5.png │ │ │ │ │ ├── i5.png.meta │ │ │ │ │ ├── i6.png │ │ │ │ │ ├── i6.png.meta │ │ │ │ │ ├── i7.png │ │ │ │ │ ├── i7.png.meta │ │ │ │ │ ├── i8.png │ │ │ │ │ ├── i8.png.meta │ │ │ │ │ ├── i9.png │ │ │ │ │ ├── i9.png.meta │ │ │ │ │ ├── k0.png │ │ │ │ │ ├── k0.png.meta │ │ │ │ │ ├── k1.png │ │ │ │ │ └── k1.png.meta │ │ │ │ ├── UI.meta │ │ │ │ └── UI │ │ │ │ │ ├── Bag.bin │ │ │ │ │ ├── Bag.bin.meta │ │ │ │ │ ├── Bag_atlas0.png │ │ │ │ │ └── Bag_atlas0.png.meta │ │ │ ├── monster_icon.meta │ │ │ ├── monster_icon │ │ │ │ ├── BuleMonster.png │ │ │ │ ├── BuleMonster.png.meta │ │ │ │ ├── GreenMonster.png │ │ │ │ ├── GreenMonster.png.meta │ │ │ │ ├── PurpleMonster.png │ │ │ │ ├── PurpleMonster.png.meta │ │ │ │ ├── RedMonster.png │ │ │ │ ├── RedMonster.png.meta │ │ │ │ ├── YellowMonster.png │ │ │ │ └── YellowMonster.png.meta │ │ │ ├── test-txts.meta │ │ │ └── test-txts │ │ │ │ ├── txt1.txt │ │ │ │ └── txt1.txt.meta │ │ ├── src.meta │ │ ├── src │ │ │ ├── AppMainComp.ts │ │ │ ├── AppMainComp.ts.meta │ │ │ ├── DemoModule.ts │ │ │ ├── DemoModule.ts.meta │ │ │ ├── FrameworkLoader.ts │ │ │ ├── FrameworkLoader.ts.meta │ │ │ ├── LayerType.ts │ │ │ ├── LayerType.ts.meta │ │ │ ├── ModuleMap.ts │ │ │ ├── ModuleMap.ts.meta │ │ │ ├── Utils.ts │ │ │ └── Utils.ts.meta │ │ ├── test-main.meta │ │ ├── test-main │ │ │ ├── ListItem.ts │ │ │ ├── ListItem.ts.meta │ │ │ ├── TestMain.ts │ │ │ ├── TestMain.ts.meta │ │ │ ├── case-item.prefab │ │ │ └── case-item.prefab.meta │ │ ├── tests-res.meta │ │ ├── tests-res │ │ │ ├── animclips.meta │ │ │ ├── animclips │ │ │ │ ├── asyncViewShowAnimClip.anim │ │ │ │ ├── asyncViewShowAnimClip.anim.meta │ │ │ │ ├── mutiinsViewShowAnimClip.anim │ │ │ │ └── mutiinsViewShowAnimClip.anim.meta │ │ │ ├── bg.png │ │ │ ├── bg.png.meta │ │ │ ├── btn_normal.png │ │ │ ├── btn_normal.png.meta │ │ │ ├── btn_pressed.png │ │ │ ├── btn_pressed.png.meta │ │ │ ├── close-icon.png │ │ │ ├── close-icon.png.meta │ │ │ ├── spineboy.meta │ │ │ └── spineboy │ │ │ │ ├── spineboy.json │ │ │ │ ├── spineboy.json.meta │ │ │ │ ├── spineboy.png │ │ │ │ ├── spineboy.png.meta │ │ │ │ ├── spineboy.txt │ │ │ │ └── spineboy.txt.meta │ │ ├── tests.meta │ │ └── tests │ │ │ ├── broadcast.meta │ │ │ ├── broadcast │ │ │ ├── broadcastTest.fire │ │ │ ├── broadcastTest.fire.meta │ │ │ ├── testBroadcast.ts │ │ │ └── testBroadcast.ts.meta │ │ │ ├── display-ctrl.meta │ │ │ ├── display-ctrl │ │ │ ├── DpcTestLayerType.ts │ │ │ ├── DpcTestLayerType.ts.meta │ │ │ ├── DpcTestMainComp.ts │ │ │ ├── DpcTestMainComp.ts.meta │ │ │ ├── abtest.meta │ │ │ ├── abtest │ │ │ │ ├── ABTestModule.ts │ │ │ │ ├── ABTestModule.ts.meta │ │ │ │ ├── ABTestView.prefab │ │ │ │ ├── ABTestView.prefab.meta │ │ │ │ ├── ABTestView.ts │ │ │ │ ├── ABTestView.ts.meta │ │ │ │ ├── txt1.txt │ │ │ │ └── txt1.txt.meta │ │ │ ├── display-ctrl.fire │ │ │ ├── display-ctrl.fire.meta │ │ │ ├── setDpcTestModuleMap.ts │ │ │ ├── setDpcTestModuleMap.ts.meta │ │ │ ├── view-ctrls.meta │ │ │ └── view-ctrls │ │ │ │ ├── AnimView.ts │ │ │ │ ├── AnimView.ts.meta │ │ │ │ ├── CustomResHandleView.ts │ │ │ │ ├── CustomResHandleView.ts.meta │ │ │ │ ├── DepResView.ts │ │ │ │ ├── DepResView.ts.meta │ │ │ │ ├── LoadingView.ts │ │ │ │ ├── LoadingView.ts.meta │ │ │ │ ├── MutiInsView.ts │ │ │ │ └── MutiInsView.ts.meta │ │ │ ├── fairygui.meta │ │ │ └── fairygui │ │ │ ├── FDpcTestLayerType.ts │ │ │ ├── FDpcTestLayerType.ts.meta │ │ │ ├── FDpcTestMainComp.ts │ │ │ ├── FDpcTestMainComp.ts.meta │ │ │ ├── fairygui.fire │ │ │ ├── fairygui.fire.meta │ │ │ ├── setFDpcTestModuleMap.ts │ │ │ ├── setFDpcTestModuleMap.ts.meta │ │ │ ├── views.meta │ │ │ └── views │ │ │ ├── BagView.ts │ │ │ ├── BagView.ts.meta │ │ │ ├── CCLoadingView.ts │ │ │ ├── CCLoadingView.ts.meta │ │ │ ├── CCNodeCtrl.ts │ │ │ └── CCNodeCtrl.ts.meta │ ├── build_fixs │ │ └── _prelude.js │ ├── jsconfig.json │ ├── libs │ │ └── fairygui.d.ts │ ├── package.json │ ├── project.json │ ├── settings │ │ ├── builder.json │ │ ├── builder.panel.json │ │ ├── project.json │ │ └── services.json │ └── tsconfig.json ├── egf-ccc3-full │ ├── .gitignore │ ├── CHANGELOG.md │ ├── README.md │ ├── assets │ │ ├── Main.scene │ │ ├── Main.scene.meta │ │ ├── editor_fixs.meta │ │ ├── resources.meta │ │ ├── resources │ │ │ ├── display-ctrl-test-views.meta │ │ │ ├── display-ctrl-test-views │ │ │ │ ├── AnimView.prefab │ │ │ │ ├── AnimView.prefab.meta │ │ │ │ ├── CustomResHandleView.prefab │ │ │ │ ├── CustomResHandleView.prefab.meta │ │ │ │ ├── DepResView.prefab │ │ │ │ ├── DepResView.prefab.meta │ │ │ │ ├── LoadingView.prefab │ │ │ │ ├── LoadingView.prefab.meta │ │ │ │ ├── MutiInsView.prefab │ │ │ │ └── MutiInsView.prefab.meta │ │ │ ├── fairygui.meta │ │ │ ├── fairygui │ │ │ │ ├── Icons.meta │ │ │ │ ├── Icons │ │ │ │ │ ├── i0.png │ │ │ │ │ ├── i0.png.meta │ │ │ │ │ ├── i1.png │ │ │ │ │ ├── i1.png.meta │ │ │ │ │ ├── i2.png │ │ │ │ │ ├── i2.png.meta │ │ │ │ │ ├── i3.png │ │ │ │ │ ├── i3.png.meta │ │ │ │ │ ├── i4.png │ │ │ │ │ ├── i4.png.meta │ │ │ │ │ ├── i5.png │ │ │ │ │ ├── i5.png.meta │ │ │ │ │ ├── i6.png │ │ │ │ │ ├── i6.png.meta │ │ │ │ │ ├── i7.png │ │ │ │ │ ├── i7.png.meta │ │ │ │ │ ├── i8.png │ │ │ │ │ ├── i8.png.meta │ │ │ │ │ ├── i9.png │ │ │ │ │ ├── i9.png.meta │ │ │ │ │ ├── k0.png │ │ │ │ │ ├── k0.png.meta │ │ │ │ │ ├── k1.png │ │ │ │ │ └── k1.png.meta │ │ │ │ ├── UI.meta │ │ │ │ └── UI │ │ │ │ │ ├── Bag.bin │ │ │ │ │ ├── Bag.bin.meta │ │ │ │ │ ├── Bag_atlas0.png │ │ │ │ │ └── Bag_atlas0.png.meta │ │ │ ├── monster_icon.meta │ │ │ ├── monster_icon │ │ │ │ ├── BuleMonster.png │ │ │ │ ├── BuleMonster.png.meta │ │ │ │ ├── GreenMonster.png │ │ │ │ ├── GreenMonster.png.meta │ │ │ │ ├── PurpleMonster.png │ │ │ │ ├── PurpleMonster.png.meta │ │ │ │ ├── RedMonster.png │ │ │ │ ├── RedMonster.png.meta │ │ │ │ ├── YellowMonster.png │ │ │ │ └── YellowMonster.png.meta │ │ │ ├── test-txts.meta │ │ │ └── test-txts │ │ │ │ ├── txt1.txt │ │ │ │ └── txt1.txt.meta │ │ ├── src.meta │ │ ├── src │ │ │ ├── AppMainComp.ts │ │ │ ├── AppMainComp.ts.meta │ │ │ ├── DemoModule.ts │ │ │ ├── DemoModule.ts.meta │ │ │ ├── FrameworkLoader.ts │ │ │ ├── FrameworkLoader.ts.meta │ │ │ ├── LayerType.ts │ │ │ ├── LayerType.ts.meta │ │ │ ├── ModuleMap.ts │ │ │ ├── ModuleMap.ts.meta │ │ │ ├── Utils.ts │ │ │ └── Utils.ts.meta │ │ ├── test-main.meta │ │ ├── test-main │ │ │ ├── ListItem.ts │ │ │ ├── ListItem.ts.meta │ │ │ ├── TestMain.ts │ │ │ ├── TestMain.ts.meta │ │ │ ├── case-item.prefab │ │ │ └── case-item.prefab.meta │ │ ├── tests-res.meta │ │ ├── tests-res │ │ │ ├── animclips.meta │ │ │ ├── animclips │ │ │ │ ├── asyncViewShowAnimClip.anim │ │ │ │ ├── asyncViewShowAnimClip.anim.meta │ │ │ │ ├── mutiinsViewShowAnimClip.anim │ │ │ │ └── mutiinsViewShowAnimClip.anim.meta │ │ │ ├── bg.png │ │ │ ├── bg.png.meta │ │ │ ├── btn_normal.png │ │ │ ├── btn_normal.png.meta │ │ │ ├── btn_pressed.png │ │ │ ├── btn_pressed.png.meta │ │ │ ├── close-icon.png │ │ │ ├── close-icon.png.meta │ │ │ ├── spineboy.meta │ │ │ └── spineboy │ │ │ │ ├── spineboy.json │ │ │ │ ├── spineboy.json.meta │ │ │ │ ├── spineboy.png │ │ │ │ ├── spineboy.png.meta │ │ │ │ ├── spineboy.txt │ │ │ │ └── spineboy.txt.meta │ │ ├── tests.meta │ │ └── tests │ │ │ ├── broadcast.meta │ │ │ ├── broadcast │ │ │ ├── broadcastTest.scene │ │ │ ├── broadcastTest.scene.meta │ │ │ ├── testBroadcast.ts │ │ │ └── testBroadcast.ts.meta │ │ │ ├── display-ctrl.meta │ │ │ ├── display-ctrl │ │ │ ├── DpcTestLayerType.ts │ │ │ ├── DpcTestLayerType.ts.meta │ │ │ ├── DpcTestMainComp.ts │ │ │ ├── DpcTestMainComp.ts.meta │ │ │ ├── abtest.meta │ │ │ ├── abtest │ │ │ │ ├── ABTestModule.ts │ │ │ │ ├── ABTestModule.ts.meta │ │ │ │ ├── ABTestView.prefab │ │ │ │ ├── ABTestView.prefab.meta │ │ │ │ ├── ABTestView.ts │ │ │ │ ├── ABTestView.ts.meta │ │ │ │ ├── txt1.txt │ │ │ │ └── txt1.txt.meta │ │ │ ├── display-ctrl.scene │ │ │ ├── display-ctrl.scene.meta │ │ │ ├── setDpcTestModuleMap.ts │ │ │ ├── setDpcTestModuleMap.ts.meta │ │ │ ├── view-ctrls.meta │ │ │ └── view-ctrls │ │ │ │ ├── AnimView.ts │ │ │ │ ├── AnimView.ts.meta │ │ │ │ ├── CustomResHandleView.ts │ │ │ │ ├── CustomResHandleView.ts.meta │ │ │ │ ├── DepResView.ts │ │ │ │ ├── DepResView.ts.meta │ │ │ │ ├── LoadingView.ts │ │ │ │ ├── LoadingView.ts.meta │ │ │ │ ├── MutiInsView.ts │ │ │ │ └── MutiInsView.ts.meta │ │ │ ├── fairygui.meta │ │ │ └── fairygui │ │ │ ├── FDpcTestLayerType.ts │ │ │ ├── FDpcTestLayerType.ts.meta │ │ │ ├── FDpcTestMainComp.ts │ │ │ ├── FDpcTestMainComp.ts.meta │ │ │ ├── fairygui.scene │ │ │ ├── fairygui.scene.meta │ │ │ ├── setFDpcTestModuleMap.ts │ │ │ ├── setFDpcTestModuleMap.ts.meta │ │ │ ├── views.meta │ │ │ └── views │ │ │ ├── BagView.ts │ │ │ ├── BagView.ts.meta │ │ │ ├── CCLoadingView.ts │ │ │ ├── CCLoadingView.ts.meta │ │ │ ├── CCNodeCtrl.ts │ │ │ └── CCNodeCtrl.ts.meta │ ├── ccdts │ │ └── @types │ │ │ ├── editor │ │ │ ├── app │ │ │ │ └── index.d.ts │ │ │ ├── clipboard │ │ │ │ └── index.d.ts │ │ │ ├── dialog │ │ │ │ ├── index.d.ts │ │ │ │ └── public │ │ │ │ │ └── interface.d.ts │ │ │ ├── edit-mode │ │ │ │ └── index.d.ts │ │ │ ├── i18n │ │ │ │ ├── index.d.ts │ │ │ │ └── languages │ │ │ │ │ ├── en.d.ts │ │ │ │ │ └── zh.d.ts │ │ │ ├── index.d.ts │ │ │ ├── layout │ │ │ │ └── index.d.ts │ │ │ ├── logger │ │ │ │ └── index.d.ts │ │ │ ├── menu │ │ │ │ ├── index.d.ts │ │ │ │ └── public │ │ │ │ │ └── interface.d.ts │ │ │ ├── message │ │ │ │ ├── index.d.ts │ │ │ │ └── public │ │ │ │ │ └── interface.d.ts │ │ │ ├── metrics │ │ │ │ ├── index.d.ts │ │ │ │ └── public │ │ │ │ │ └── interface.d.ts │ │ │ ├── network │ │ │ │ └── index.d.ts │ │ │ ├── package │ │ │ │ ├── index.d.ts │ │ │ │ └── public │ │ │ │ │ ├── config.d.ts │ │ │ │ │ ├── interface.d.ts │ │ │ │ │ └── utils.d.ts │ │ │ ├── panel │ │ │ │ └── index.d.ts │ │ │ ├── profile │ │ │ │ ├── index.d.ts │ │ │ │ └── public │ │ │ │ │ ├── config.d.ts │ │ │ │ │ └── interface.d.ts │ │ │ ├── project │ │ │ │ └── index.d.ts │ │ │ ├── selection │ │ │ │ └── index.d.ts │ │ │ ├── startup │ │ │ │ └── index.d.ts │ │ │ ├── task │ │ │ │ ├── index.d.ts │ │ │ │ └── public │ │ │ │ │ └── interface.d.ts │ │ │ ├── theme │ │ │ │ └── index.d.ts │ │ │ ├── ui-kit │ │ │ │ └── index.d.ts │ │ │ ├── user │ │ │ │ └── index.d.ts │ │ │ ├── utils │ │ │ │ ├── index.d.ts │ │ │ │ └── source │ │ │ │ │ ├── file.d.ts │ │ │ │ │ ├── math.d.ts │ │ │ │ │ ├── parse.d.ts │ │ │ │ │ ├── path.d.ts │ │ │ │ │ └── url.d.ts │ │ │ └── windows │ │ │ │ └── index.d.ts │ │ │ ├── extension.d.ts │ │ │ ├── index.d.ts │ │ │ ├── message.d.ts │ │ │ └── packages │ │ │ ├── asset-db │ │ │ └── @types │ │ │ │ ├── message.d.ts │ │ │ │ └── public.d.ts │ │ │ ├── builder │ │ │ └── @types │ │ │ │ ├── index.d.ts │ │ │ │ ├── protect │ │ │ │ ├── asset-manager.d.ts │ │ │ │ ├── build-plugin.d.ts │ │ │ │ ├── build-result.d.ts │ │ │ │ ├── global.d.ts │ │ │ │ ├── import-map.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ ├── options.d.ts │ │ │ │ └── texture-compress.d.ts │ │ │ │ └── public │ │ │ │ ├── build-plugin.d.ts │ │ │ │ ├── build-result.d.ts │ │ │ │ ├── global.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ ├── message.d.ts │ │ │ │ └── options.d.ts │ │ │ ├── console │ │ │ └── @types │ │ │ │ └── pritate.d.ts │ │ │ ├── engine │ │ │ └── @types │ │ │ │ └── message.d.ts │ │ │ ├── preview │ │ │ └── @types │ │ │ │ ├── index.d.ts │ │ │ │ └── protect │ │ │ │ └── index.d.ts │ │ │ ├── scene │ │ │ └── @types │ │ │ │ ├── message.d.ts │ │ │ │ └── public.d.ts │ │ │ ├── server │ │ │ └── @types │ │ │ │ └── package.d.ts │ │ │ └── shortcuts │ │ │ └── @types │ │ │ └── shortcut.d.ts │ ├── package-lock.json │ ├── package.json │ ├── settings │ │ └── v2 │ │ │ └── packages │ │ │ ├── builder.json │ │ │ ├── cocos-service.json │ │ │ ├── device.json │ │ │ ├── engine.json │ │ │ ├── program.json │ │ │ └── project.json │ └── tsconfig.json ├── egf-net-ws │ ├── CHANGELOG.md │ ├── README.md │ ├── egf-ccc-net-ws │ │ ├── .gitignore │ │ ├── assets │ │ │ ├── comps.meta │ │ │ ├── comps │ │ │ │ ├── FireComponent.ts │ │ │ │ ├── maskPanel.meta │ │ │ │ ├── maskPanel │ │ │ │ │ ├── MaskPanel.ts │ │ │ │ │ └── MaskPanel.ts.meta │ │ │ │ ├── msgItem.meta │ │ │ │ ├── msgItem │ │ │ │ │ ├── MsgItem.ts │ │ │ │ │ ├── MsgItem.ts.meta │ │ │ │ │ ├── msgItem.prefab │ │ │ │ │ └── msgItem.prefab.meta │ │ │ │ ├── msgPanel.meta │ │ │ │ └── msgPanel │ │ │ │ │ ├── MsgPanel.ts │ │ │ │ │ └── MsgPanel.ts.meta │ │ │ ├── editor_fixs.meta │ │ │ ├── editor_fixs │ │ │ │ ├── editor_require_fix.js │ │ │ │ └── editor_require_fix.js.meta │ │ │ ├── libs.meta │ │ │ ├── libs │ │ │ │ ├── fire.js │ │ │ │ ├── fire.js.meta │ │ │ │ ├── protobuf.js │ │ │ │ ├── protobuf.js.map │ │ │ │ ├── protobuf.js.map.meta │ │ │ │ └── protobuf.js.meta │ │ │ ├── protojs.meta │ │ │ ├── protojs │ │ │ │ ├── proto_bundle.js │ │ │ │ └── proto_bundle.js.meta │ │ │ ├── testcases.meta │ │ │ └── testcases │ │ │ │ ├── protobuf-test.meta │ │ │ │ ├── protobuf-test │ │ │ │ ├── ProtobufNetTest.ts │ │ │ │ ├── ProtobufNetTest.ts.meta │ │ │ │ ├── protobuf-test.fire │ │ │ │ └── protobuf-test.fire.meta │ │ │ │ ├── simple-test.meta │ │ │ │ ├── simple-test │ │ │ │ ├── SimpleTest.ts │ │ │ │ ├── SimpleTest.ts.meta │ │ │ │ ├── simple-test.fire │ │ │ │ └── simple-test.fire.meta │ │ │ │ ├── websocket-test.meta │ │ │ │ └── websocket-test │ │ │ │ ├── WebsocketTest.ts │ │ │ │ ├── WebsocketTest.ts.meta │ │ │ │ ├── websocket-test.fire │ │ │ │ └── websocket-test.fire.meta │ │ ├── creator.d.ts │ │ ├── jsconfig.json │ │ ├── libs │ │ │ ├── global.d.ts │ │ │ ├── proto_bundle.d.ts │ │ │ └── protobuf-library.d.ts │ │ ├── project.json │ │ ├── settings │ │ │ ├── project.json │ │ │ └── services.json │ │ └── tsconfig.json │ ├── egf-net-ws-server │ │ ├── bin │ │ │ ├── config.js │ │ │ ├── config.js.map │ │ │ ├── ws-server.js │ │ │ └── ws-server.js.map │ │ ├── libs │ │ │ ├── proto_bundle.d.ts │ │ │ ├── protobuf-library.d.ts │ │ │ ├── protobuf.js │ │ │ └── protobuf.js.map │ │ ├── protojs │ │ │ └── proto_bundle.js │ │ ├── src │ │ │ ├── config.ts │ │ │ └── ws-server.ts │ │ └── tsconfig.json │ ├── egf-simple-net-client │ │ ├── index.html │ │ ├── index.js │ │ └── tsconfig.json │ ├── package.json │ ├── protobuf │ │ ├── epbconfig.js │ │ └── library │ │ │ ├── full │ │ │ ├── protobuf.js │ │ │ ├── protobuf.js.map │ │ │ ├── protobuf.min.js │ │ │ └── protobuf.min.js.map │ │ │ ├── light │ │ │ ├── protobuf.js │ │ │ ├── protobuf.js.map │ │ │ ├── protobuf.min.js │ │ │ └── protobuf.min.js.map │ │ │ ├── minimal │ │ │ ├── protobuf.js │ │ │ ├── protobuf.js.map │ │ │ ├── protobuf.min.js │ │ │ └── protobuf.min.js.map │ │ │ └── protobuf-library.d.ts │ └── protofiles │ │ └── pb_base.proto ├── pinus-enet-chat │ ├── CHANGELOG.md │ ├── README.md │ ├── game-server │ │ ├── app.ts │ │ ├── app │ │ │ ├── components │ │ │ │ └── testcomponent.ts │ │ │ ├── servers │ │ │ │ ├── chat │ │ │ │ │ ├── handler │ │ │ │ │ │ └── chatHandler.ts │ │ │ │ │ └── remote │ │ │ │ │ │ └── chatRemote.ts │ │ │ │ ├── connector │ │ │ │ │ └── handler │ │ │ │ │ │ └── entryHandler.ts │ │ │ │ ├── gate │ │ │ │ │ └── handler │ │ │ │ │ │ └── gateHandler.ts │ │ │ │ └── user.rpc.define.ts │ │ │ └── util │ │ │ │ ├── dispatcher.ts │ │ │ │ └── routeUtil.ts │ │ ├── config │ │ │ ├── adminServer.ts │ │ │ ├── adminUser.ts │ │ │ ├── clientProtos.ts │ │ │ ├── dictionary.ts │ │ │ ├── log4js.ts │ │ │ ├── log4js.without.logfile.ts │ │ │ ├── master.ts │ │ │ ├── serverProtos.ts │ │ │ └── servers.ts │ │ ├── preload.ts │ │ ├── robot │ │ │ └── robot.ts │ │ ├── tsconfig.json │ │ └── tsrun.js │ ├── npm-install.bat │ ├── npm-install.sh │ ├── package.json │ └── web-server │ │ ├── app.js │ │ ├── bin │ │ ├── component.bat │ │ └── component.sh │ │ ├── package.json │ │ ├── public │ │ ├── enet.d.ts │ │ ├── enetPinusPb.d.ts │ │ ├── index.html │ │ ├── js │ │ │ ├── client.js │ │ │ ├── lib │ │ │ │ ├── enet-pinus-pb.js │ │ │ │ ├── enet.js │ │ │ │ └── jquery-1.8.0.min.js │ │ │ └── pop.js │ │ └── style.css │ │ └── tsconfig.json └── simple-ws-server │ ├── CHANGELOG.md │ ├── bin │ ├── ws-server.js │ └── ws-server.js.map │ ├── package.json │ ├── simple-client │ └── index.html │ ├── src │ └── ws-server.ts │ └── tsconfig.json ├── jest.config.js ├── lerna.json ├── package.json ├── packages ├── .gitattributes ├── broadcast │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── __tests__ │ │ └── broadcast.test.ts │ ├── dist │ │ ├── cjs │ │ │ ├── lib │ │ │ │ ├── index.js │ │ │ │ └── index.min.js │ │ │ └── types │ │ │ │ └── index.d.ts │ │ ├── es │ │ │ ├── lib │ │ │ │ ├── index.min.mjs │ │ │ │ └── index.mjs │ │ │ └── types │ │ │ │ └── index.d.ts │ │ ├── iife │ │ │ ├── broadcast.d.ts │ │ │ ├── broadcast.js │ │ │ ├── broadcast.js.map │ │ │ └── broadcast.min.js │ │ ├── system │ │ │ ├── lib │ │ │ │ ├── index.js │ │ │ │ └── index.min.js │ │ │ └── types │ │ │ │ └── index.d.ts │ │ └── umd │ │ │ ├── broadcast.d.ts │ │ │ ├── broadcast.js │ │ │ ├── broadcast.js.map │ │ │ └── broadcast.min.js │ ├── egf.compile.js │ ├── package.json │ ├── src │ │ ├── broadcast.ts │ │ ├── globalDefines.ts │ │ └── index.ts │ └── tsconfig.json ├── c3d-comp-template │ ├── CHANGELOG.md │ ├── README.md │ ├── __tests__ │ │ └── test.test.ts │ ├── dist │ │ ├── cjs │ │ │ ├── lib │ │ │ │ ├── index.js │ │ │ │ └── index.min.js │ │ │ └── types │ │ │ │ └── index.d.ts │ │ ├── es │ │ │ ├── lib │ │ │ │ ├── index.min.mjs │ │ │ │ └── index.mjs │ │ │ └── types │ │ │ │ └── index.d.ts │ │ ├── iife │ │ │ ├── c3dCompTemplate.d.ts │ │ │ ├── c3dCompTemplate.js │ │ │ ├── c3dCompTemplate.js.map │ │ │ └── c3dCompTemplate.min.js │ │ ├── system │ │ │ ├── lib │ │ │ │ ├── index.js │ │ │ │ └── index.min.js │ │ │ └── types │ │ │ │ └── index.d.ts │ │ └── umd │ │ │ ├── c3dCompTemplate.d.ts │ │ │ ├── c3dCompTemplate.js │ │ │ ├── c3dCompTemplate.js.map │ │ │ └── c3dCompTemplate.min.js │ ├── egf.compile.js │ ├── libs │ │ ├── @cocos │ │ │ ├── ammo │ │ │ │ └── Ammo.d.ts │ │ │ ├── cannon │ │ │ │ └── CANNON.d.ts │ │ │ └── physx │ │ │ │ └── PhysX.d.ts │ │ ├── cc.d.ts │ │ ├── consts.d.ts │ │ ├── editor-extends.d.ts │ │ ├── global-adapter.d.ts │ │ ├── globals.d.ts │ │ ├── testInterfaces.d.ts │ │ ├── webGL.extras.d.ts │ │ ├── webGL2.extras.d.ts │ │ └── wx.d.ts │ ├── package.json │ ├── src │ │ ├── TestComp.ts │ │ └── index.ts │ └── tsconfig.json ├── cli │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── __tests__ │ │ ├── auto_create_index │ │ │ ├── dist │ │ │ │ └── cjs │ │ │ │ │ ├── lib │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.js.map │ │ │ │ │ └── types │ │ │ │ │ └── index.d.ts │ │ │ ├── egf.compile.js │ │ │ ├── src │ │ │ │ ├── classA.ts │ │ │ │ ├── classB.ts │ │ │ │ ├── classC.ts │ │ │ │ ├── classbc.ts │ │ │ │ ├── index.ts │ │ │ │ └── refOtherPkg.ts │ │ │ └── tsconfig.json │ │ ├── demo │ │ │ ├── iife │ │ │ │ ├── testModule.d.ts │ │ │ │ └── testModule.js │ │ │ ├── index-test-sourcemap.html │ │ │ └── test-iife-dts.ts │ │ ├── egf.compile.js │ │ ├── gen-dts │ │ │ ├── dist │ │ │ │ ├── genDts.d.ts │ │ │ │ └── index.d.ts │ │ │ ├── egf.compile.js │ │ │ ├── src │ │ │ │ ├── classA.ts │ │ │ │ ├── classB.ts │ │ │ │ ├── classC.ts │ │ │ │ ├── classbc.ts │ │ │ │ ├── index.ts │ │ │ │ └── refOtherPkg.ts │ │ │ ├── subproj │ │ │ │ ├── classA.ts │ │ │ │ ├── classB.ts │ │ │ │ ├── dist │ │ │ │ │ ├── egfCli.d.ts │ │ │ │ │ └── index.d.ts │ │ │ │ ├── index.ts │ │ │ │ ├── testExclude.ts │ │ │ │ ├── testExclude2 │ │ │ │ │ └── testExclude2.ts │ │ │ │ └── tsconfig.json │ │ │ ├── testOption.js │ │ │ └── tsconfig.json │ │ ├── mutientry │ │ │ ├── dist │ │ │ │ ├── cjs │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.js.map │ │ │ │ │ │ ├── index.min.js │ │ │ │ │ │ ├── index.min.js.map │ │ │ │ │ │ ├── index.min2.js │ │ │ │ │ │ ├── index.min2.js.map │ │ │ │ │ │ ├── index2.js │ │ │ │ │ │ └── index2.js.map │ │ │ │ │ └── types │ │ │ │ │ │ └── index.d.ts │ │ │ │ └── es │ │ │ │ │ ├── lib │ │ │ │ │ ├── index.mjs │ │ │ │ │ ├── index.mjs.map │ │ │ │ │ ├── index2.mjs │ │ │ │ │ └── index2.mjs.map │ │ │ │ │ └── types │ │ │ │ │ └── index.d.ts │ │ │ ├── egf.compile.js │ │ │ ├── src │ │ │ │ ├── classA.ts │ │ │ │ ├── classB.ts │ │ │ │ ├── classC.ts │ │ │ │ ├── classbc.ts │ │ │ │ ├── index.ts │ │ │ │ └── refOtherPkg.ts │ │ │ ├── src2 │ │ │ │ ├── classA.ts │ │ │ │ ├── classB.ts │ │ │ │ ├── classD.ts │ │ │ │ └── index.ts │ │ │ └── tsconfig.json │ │ ├── owinput-output │ │ │ ├── dist │ │ │ │ └── cjs │ │ │ │ │ ├── lib │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.js.map │ │ │ │ │ └── types │ │ │ │ │ └── index.d.ts │ │ │ ├── egf.compile.js │ │ │ ├── src │ │ │ │ ├── classA.ts │ │ │ │ ├── classB.ts │ │ │ │ ├── classC.ts │ │ │ │ ├── classbc.ts │ │ │ │ ├── index.ts │ │ │ │ └── refOtherPkg.ts │ │ │ └── tsconfig.json │ │ ├── single │ │ │ ├── dist │ │ │ │ ├── cjs │ │ │ │ │ └── lib │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── index.js.map │ │ │ │ ├── es │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── index.min.mjs │ │ │ │ │ │ ├── index.mjs │ │ │ │ │ │ └── index.mjs.map │ │ │ │ │ └── types │ │ │ │ │ │ └── index.d.ts │ │ │ │ ├── esm │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── index.min.mjs │ │ │ │ │ │ ├── index.min.mjs.map │ │ │ │ │ │ ├── index.mjs │ │ │ │ │ │ └── index.mjs.map │ │ │ │ │ └── types │ │ │ │ │ │ └── index.d.ts │ │ │ │ └── iife │ │ │ │ │ ├── egfCli.d.ts │ │ │ │ │ ├── egfCli.js │ │ │ │ │ ├── egfCli.js.map │ │ │ │ │ ├── tests.d.ts │ │ │ │ │ ├── tests.js │ │ │ │ │ └── tests.js.map │ │ │ ├── egf.compile.js │ │ │ ├── src │ │ │ │ ├── classA.ts │ │ │ │ ├── classB.ts │ │ │ │ ├── classC.ts │ │ │ │ ├── classbc.ts │ │ │ │ ├── index.ts │ │ │ │ └── refOtherPkg.ts │ │ │ └── tsconfig.json │ │ ├── single2 │ │ │ ├── dist │ │ │ │ ├── cjs │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── index.js.map │ │ │ │ │ └── types │ │ │ │ │ │ └── index.d.ts │ │ │ │ ├── es │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── index.min.mjs │ │ │ │ │ │ ├── index.mjs │ │ │ │ │ │ └── index.mjs.map │ │ │ │ │ └── types │ │ │ │ │ │ └── index.d.ts │ │ │ │ └── iife │ │ │ │ │ ├── testModule.d.ts │ │ │ │ │ └── testModule.js │ │ │ ├── egf.compile.js │ │ │ ├── src │ │ │ │ ├── classA.ts │ │ │ │ ├── classB.ts │ │ │ │ ├── classC.ts │ │ │ │ ├── classbc.ts │ │ │ │ ├── index.ts │ │ │ │ └── refOtherPkg.ts │ │ │ ├── testOption.js │ │ │ └── tsconfig.json │ │ ├── single3 │ │ │ ├── dist │ │ │ │ └── cjs │ │ │ │ │ ├── lib │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.js.map │ │ │ │ │ └── types │ │ │ │ │ └── index.d.ts │ │ │ ├── egf.compile.js │ │ │ ├── src │ │ │ │ ├── classA.ts │ │ │ │ ├── classB.ts │ │ │ │ ├── classC.ts │ │ │ │ ├── classbc.ts │ │ │ │ ├── index.ts │ │ │ │ └── refOtherPkg.ts │ │ │ ├── testOption.js │ │ │ └── tsconfig.json │ │ ├── testOption.js │ │ └── tsconfig.json │ ├── cli.js │ ├── egfCompileOption.d.ts │ ├── libs │ │ ├── cti │ │ │ ├── EN_CLIOPTION.d.ts │ │ │ ├── EN_CLIOPTION.js │ │ │ ├── EN_CLIOPTION.js.map │ │ │ ├── TypeScritIndexWriter.d.ts │ │ │ ├── TypeScritIndexWriter.js │ │ │ ├── TypeScritIndexWriter.js.map │ │ │ ├── commands │ │ │ │ ├── CleanCommandModule.d.ts │ │ │ │ ├── CleanCommandModule.js │ │ │ │ ├── CleanCommandModule.js.map │ │ │ │ ├── CommandModule.d.ts │ │ │ │ ├── CommandModule.js │ │ │ │ ├── CommandModule.js.map │ │ │ │ ├── CreateCommandModule.d.ts │ │ │ │ ├── CreateCommandModule.js │ │ │ │ ├── CreateCommandModule.js.map │ │ │ │ ├── EntrypointCommandModule.d.ts │ │ │ │ ├── EntrypointCommandModule.js │ │ │ │ ├── EntrypointCommandModule.js.map │ │ │ │ ├── ICommandModule.d.ts │ │ │ │ ├── ICommandModule.js │ │ │ │ ├── ICommandModule.js.map │ │ │ │ ├── InitCommandModule.d.ts │ │ │ │ ├── InitCommandModule.js │ │ │ │ └── InitCommandModule.js.map │ │ │ ├── cti.d.ts │ │ │ ├── cti.js.map │ │ │ ├── options │ │ │ │ ├── ICreateTsIndexCliOption.d.ts │ │ │ │ ├── ICreateTsIndexCliOption.js │ │ │ │ ├── ICreateTsIndexCliOption.js.map │ │ │ │ ├── ICreateTsIndexOption.d.ts │ │ │ │ ├── ICreateTsIndexOption.js │ │ │ │ ├── ICreateTsIndexOption.js.map │ │ │ │ ├── configure.d.ts │ │ │ │ ├── configure.js │ │ │ │ ├── configure.js.map │ │ │ │ ├── options.d.ts │ │ │ │ ├── options.js │ │ │ │ └── options.js.map │ │ │ └── tools │ │ │ │ ├── CTILogger.d.ts │ │ │ │ ├── CTILogger.js │ │ │ │ ├── CTILogger.js.map │ │ │ │ ├── CTIUtility.d.ts │ │ │ │ ├── CTIUtility.js │ │ │ │ ├── CTIUtility.js.map │ │ │ │ ├── exportStatement.d.ts │ │ │ │ ├── exportStatement.js │ │ │ │ └── exportStatement.js.map │ │ ├── genDts.js │ │ ├── rollupdo.js │ │ └── utils.js │ ├── package-template │ │ ├── README.md │ │ ├── __tests__ │ │ │ └── test.test.ts │ │ ├── demo │ │ │ ├── index.global.js │ │ │ └── index.html │ │ ├── dist │ │ │ ├── cjs │ │ │ │ ├── lib │ │ │ │ │ └── index.js │ │ │ │ └── types │ │ │ │ │ ├── classA.d.ts │ │ │ │ │ ├── classB.d.ts │ │ │ │ │ ├── classC.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── testInterfaces.d.ts │ │ │ └── iife │ │ │ │ ├── lib │ │ │ │ └── index.js │ │ │ │ └── types │ │ │ │ └── index.d.ts │ │ ├── egf.compile.js │ │ ├── libs │ │ │ └── testInterfaces.d.ts │ │ ├── package.json │ │ ├── src │ │ │ ├── classA.ts │ │ │ ├── classB.ts │ │ │ ├── classC.ts │ │ │ └── index.ts │ │ └── tsconfig.json │ ├── package.json │ └── tsconfig.json ├── core │ ├── .eslintignore │ ├── .eslintrc.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── __tests__ │ │ ├── app.test.ts │ │ └── test-bootloaders.ts │ ├── dist │ │ ├── cjs │ │ │ ├── lib │ │ │ │ ├── index.js │ │ │ │ └── index.min.js │ │ │ └── types │ │ │ │ └── index.d.ts │ │ ├── es │ │ │ ├── lib │ │ │ │ ├── index.min.mjs │ │ │ │ └── index.mjs │ │ │ └── types │ │ │ │ └── index.d.ts │ │ ├── iife │ │ │ ├── egfCore.d.ts │ │ │ ├── egfCore.js │ │ │ ├── egfCore.js.map │ │ │ └── egfCore.min.js │ │ ├── system │ │ │ ├── lib │ │ │ │ ├── index.js │ │ │ │ └── index.min.js │ │ │ └── types │ │ │ │ └── index.d.ts │ │ └── umd │ │ │ ├── egfCore.d.ts │ │ │ ├── egfCore.js │ │ │ ├── egfCore.js.map │ │ │ └── egfCore.min.js │ ├── egf.compile.js │ ├── package.json │ ├── snippets │ │ └── EGFSnippets.code-snippets │ ├── src │ │ ├── egf-app.ts │ │ ├── index.ts │ │ └── interfaces.ts │ └── tsconfig.json ├── display-ctrl │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── __tests__ │ │ ├── async-show-dpctrl.ts │ │ ├── base-dp-ctrl.ts │ │ ├── custom-res-handler-dpc.ts │ │ ├── dpc-mgr-type-test.ts │ │ ├── dpc-mgr.test.ts │ │ ├── no-res-dpctrl.ts │ │ ├── no-typekey-dpctrl.ts │ │ ├── ress-in-class-dpc.ts │ │ ├── transfer-param-dpcs.ts │ │ └── with-res-dpctrl.ts │ ├── dist │ │ ├── cjs │ │ │ ├── lib │ │ │ │ ├── index.js │ │ │ │ └── index.min.js │ │ │ └── types │ │ │ │ └── index.d.ts │ │ ├── es │ │ │ ├── lib │ │ │ │ ├── index.min.mjs │ │ │ │ └── index.mjs │ │ │ └── types │ │ │ │ └── index.d.ts │ │ ├── iife │ │ │ ├── displayCtrl.d.ts │ │ │ ├── displayCtrl.js │ │ │ └── displayCtrl.min.js │ │ ├── system │ │ │ ├── lib │ │ │ │ ├── index.js │ │ │ │ └── index.min.js │ │ │ └── types │ │ │ │ └── index.d.ts │ │ └── umd │ │ │ ├── displayCtrl.d.ts │ │ │ ├── displayCtrl.js │ │ │ └── displayCtrl.min.js │ ├── egf.compile.js │ ├── package.json │ ├── src │ │ ├── dp-ctrl-interfaces.ts │ │ ├── dp-ctrl-mgr.ts │ │ └── index.ts │ └── tsconfig.json ├── dpctrl-c3d │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── __tests__ │ │ └── test.test.ts │ ├── dist │ │ ├── cjs │ │ │ ├── lib │ │ │ │ ├── index.js │ │ │ │ └── index.min.js │ │ │ └── types │ │ │ │ └── index.d.ts │ │ ├── es │ │ │ ├── lib │ │ │ │ ├── index.min.mjs │ │ │ │ └── index.mjs │ │ │ └── types │ │ │ │ └── index.d.ts │ │ └── system │ │ │ ├── lib │ │ │ ├── index.js │ │ │ └── index.min.js │ │ │ └── types │ │ │ └── index.d.ts │ ├── egf.compile.js │ ├── libs │ │ └── cc.d.ts │ ├── package.json │ ├── src │ │ ├── index.ts │ │ ├── layer.ts │ │ └── node-ctrl.ts │ └── tsconfig.json ├── dpctrl-ccc │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── __tests__ │ │ └── test.test.ts │ ├── dist │ │ ├── cjs │ │ │ ├── lib │ │ │ │ ├── index.js │ │ │ │ └── index.min.js │ │ │ └── types │ │ │ │ └── index.d.ts │ │ ├── es │ │ │ ├── lib │ │ │ │ ├── index.min.mjs │ │ │ │ └── index.mjs │ │ │ └── types │ │ │ │ └── index.d.ts │ │ ├── iife │ │ │ ├── dpctrlCcc.d.ts │ │ │ ├── dpctrlCcc.js │ │ │ ├── dpctrlCcc.js.map │ │ │ └── dpctrlCcc.min.js │ │ └── umd │ │ │ ├── dpctrlCcc.d.ts │ │ │ ├── dpctrlCcc.js │ │ │ ├── dpctrlCcc.js.map │ │ │ └── dpctrlCcc.min.js │ ├── egf.compile.js │ ├── libs │ │ └── creator.d.ts │ ├── package.json │ ├── src │ │ ├── Layer.ts │ │ ├── index.ts │ │ ├── layer.ts │ │ └── node-ctrl.ts │ └── tsconfig.json ├── dpctrl-fgui │ ├── CHANGELOG.md │ ├── README.md │ ├── dist │ │ ├── cjs │ │ │ ├── lib │ │ │ │ ├── index.js │ │ │ │ └── index.min.js │ │ │ └── types │ │ │ │ └── index.d.ts │ │ ├── es │ │ │ ├── lib │ │ │ │ ├── index.min.mjs │ │ │ │ └── index.mjs │ │ │ └── types │ │ │ │ └── index.d.ts │ │ ├── iife │ │ │ ├── dpctrlFgui.d.ts │ │ │ ├── dpctrlFgui.js │ │ │ ├── dpctrlFgui.js.map │ │ │ └── dpctrlFgui.min.js │ │ ├── system │ │ │ ├── lib │ │ │ │ ├── index.js │ │ │ │ └── index.min.js │ │ │ └── types │ │ │ │ └── index.d.ts │ │ └── umd │ │ │ ├── dpctrlFgui.d.ts │ │ │ ├── dpctrlFgui.js │ │ │ ├── dpctrlFgui.js.map │ │ │ └── dpctrlFgui.min.js │ ├── egf.compile.js │ ├── libs │ │ └── fairygui.d.ts │ ├── package.json │ ├── src │ │ ├── BinderInterfaces.ts │ │ ├── BinderTool.ts │ │ ├── FBinderTool.ts │ │ ├── fgui-dpctrl.ts │ │ ├── fgui-layer.ts │ │ ├── fix-some-fgui.ts │ │ └── index.ts │ └── tsconfig.json ├── dpctrl-fguicc │ ├── CHANGELOG.md │ ├── README.md │ ├── dist │ │ ├── cjs │ │ │ ├── lib │ │ │ │ ├── index.js │ │ │ │ └── index.min.js │ │ │ └── types │ │ │ │ └── index.d.ts │ │ └── es │ │ │ ├── lib │ │ │ ├── index.min.mjs │ │ │ └── index.mjs │ │ │ └── types │ │ │ └── index.d.ts │ ├── egf.compile.js │ ├── libs │ │ ├── cc.d.ts │ │ ├── cc.env.d.ts │ │ └── jsb.d.ts │ ├── package.json │ ├── src │ │ ├── BinderInterfaces.ts │ │ ├── BinderTool.ts │ │ ├── FBinderTool.ts │ │ ├── fgui-dpctrl.ts │ │ ├── fgui-layer.ts │ │ ├── fix-some-fgui.ts │ │ └── index.ts │ └── tsconfig.json ├── egf-protobuf-cli │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── config-template │ │ └── epbconfig.js │ ├── dist │ │ ├── cli.js │ │ ├── index.js │ │ └── index.js.map │ ├── package.json │ ├── pblib │ │ ├── full │ │ │ ├── protobuf.js │ │ │ ├── protobuf.js.map │ │ │ ├── protobuf.min.js │ │ │ └── protobuf.min.js.map │ │ ├── light │ │ │ ├── protobuf.js │ │ │ ├── protobuf.js.map │ │ │ ├── protobuf.min.js │ │ │ └── protobuf.min.js.map │ │ ├── minimal │ │ │ ├── protobuf.js │ │ │ ├── protobuf.js.map │ │ │ ├── protobuf.min.js │ │ │ └── protobuf.min.js.map │ │ └── protobuf-library.d.ts │ ├── src │ │ ├── epbconfig.d.ts │ │ └── index.ts │ ├── test │ │ ├── client │ │ │ ├── bin │ │ │ │ └── libs │ │ │ │ │ └── protobuf.js │ │ │ ├── libs │ │ │ │ └── proto_bundle.d.ts │ │ │ └── protojs │ │ │ │ └── proto_bundle.js │ │ ├── protobuf │ │ │ ├── epbconfig.js │ │ │ └── library │ │ │ │ ├── full │ │ │ │ ├── protobuf.js │ │ │ │ ├── protobuf.js.map │ │ │ │ ├── protobuf.min.js │ │ │ │ └── protobuf.min.js.map │ │ │ │ ├── light │ │ │ │ ├── protobuf.js │ │ │ │ ├── protobuf.js.map │ │ │ │ ├── protobuf.min.js │ │ │ │ └── protobuf.min.js.map │ │ │ │ ├── minimal │ │ │ │ ├── protobuf.js │ │ │ │ ├── protobuf.js.map │ │ │ │ ├── protobuf.min.js │ │ │ │ └── protobuf.min.js.map │ │ │ │ └── protobuf-library.d.ts │ │ ├── protofile │ │ │ ├── df_1000.proto │ │ │ ├── df_1001.proto │ │ │ ├── df_1002.proto │ │ │ ├── df_1003.proto │ │ │ ├── df_1004.proto │ │ │ └── df_1005.proto │ │ └── server │ │ │ ├── libs │ │ │ ├── proto_bundle.d.ts │ │ │ └── protobuf.js │ │ │ └── protojs │ │ │ └── proto_bundle.js │ └── tsconfig.json ├── enet-pbws │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── __tests__ │ │ ├── libs │ │ │ └── proto_bundle.d.ts │ │ ├── pb-net.test.ts │ │ ├── pb-proto-handler.test.ts │ │ └── protojs │ │ │ └── proto_bundle.js │ ├── dist │ │ ├── cjs │ │ │ ├── lib │ │ │ │ ├── index.js │ │ │ │ └── index.min.js │ │ │ └── types │ │ │ │ └── index.d.ts │ │ ├── es │ │ │ ├── lib │ │ │ │ ├── index.min.mjs │ │ │ │ └── index.mjs │ │ │ └── types │ │ │ │ └── index.d.ts │ │ ├── iife │ │ │ ├── enetPbws.d.ts │ │ │ ├── enetPbws.js │ │ │ ├── enetPbws.js.map │ │ │ └── enetPbws.min.js │ │ ├── system │ │ │ ├── lib │ │ │ │ ├── index.js │ │ │ │ └── index.min.js │ │ │ └── types │ │ │ │ └── index.d.ts │ │ └── umd │ │ │ ├── enetPbws.d.ts │ │ │ ├── enetPbws.js │ │ │ ├── enetPbws.js.map │ │ │ └── enetPbws.min.js │ ├── egf.compile.js │ ├── libs │ │ └── protobuf-library.d.ts │ ├── package.json │ ├── protobuf │ │ ├── epbconfig.d.ts │ │ ├── epbconfig.js │ │ ├── library │ │ │ ├── protobuf-library.d.ts │ │ │ ├── protobuf-library.js │ │ │ └── protobuf-library.min.js │ │ ├── protofiles │ │ │ ├── df_1000.proto │ │ │ └── df_1001.proto │ │ └── tsconfig.json │ ├── src │ │ ├── byte.ts │ │ ├── index.ts │ │ ├── pb-proto-handler.ts │ │ └── pkg-type.ts │ └── tsconfig.json ├── enet-pinus-pb │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── dist │ │ ├── cjs │ │ │ ├── lib │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── index.min.js │ │ │ └── types │ │ │ │ └── index.d.ts │ │ ├── es │ │ │ ├── lib │ │ │ │ ├── index.min.mjs │ │ │ │ ├── index.mjs │ │ │ │ └── index.mjs.map │ │ │ └── types │ │ │ │ └── index.d.ts │ │ ├── iife │ │ │ ├── enetPinusPb.d.ts │ │ │ ├── enetPinusPb.js │ │ │ ├── enetPinusPb.js.map │ │ │ └── enetPinusPb.min.js │ │ ├── system │ │ │ ├── lib │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── index.min.js │ │ │ └── types │ │ │ │ └── index.d.ts │ │ └── umd │ │ │ ├── enetPinusPb.d.ts │ │ │ ├── enetPinusPb.js │ │ │ ├── enetPinusPb.js.map │ │ │ └── enetPinusPb.min.js │ ├── egf.compile.js │ ├── package.json │ ├── src │ │ ├── ByteArray.ts │ │ ├── index.ts │ │ ├── message.ts │ │ ├── package.ts │ │ ├── pinus-proto-handler.ts │ │ ├── pkg-type.ts │ │ ├── protobuf.ts │ │ ├── protocol.ts │ │ └── route-dic.ts │ └── tsconfig.json ├── enet │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── __tests__ │ │ ├── net-node.test.ts │ │ └── websocket.test.ts │ ├── dist │ │ ├── cjs │ │ │ ├── lib │ │ │ │ ├── index.js │ │ │ │ └── index.min.js │ │ │ └── types │ │ │ │ └── index.d.ts │ │ ├── es │ │ │ ├── lib │ │ │ │ ├── index.min.mjs │ │ │ │ └── index.mjs │ │ │ └── types │ │ │ │ └── index.d.ts │ │ ├── iife │ │ │ ├── enet.d.ts │ │ │ ├── enet.js │ │ │ ├── enet.js.map │ │ │ └── enet.min.js │ │ ├── system │ │ │ ├── lib │ │ │ │ ├── index.js │ │ │ │ └── index.min.js │ │ │ └── types │ │ │ │ └── index.d.ts │ │ └── umd │ │ │ ├── enet.d.ts │ │ │ ├── enet.js │ │ │ ├── enet.js.map │ │ │ └── enet.min.js │ ├── egf.compile.js │ ├── package.json │ ├── src │ │ ├── default-net-event-handler.ts │ │ ├── index.ts │ │ ├── net-interfaces.ts │ │ ├── net-node.ts │ │ ├── pkg-type.ts │ │ ├── socketStateType.ts │ │ └── wsocket.ts │ └── tsconfig.json ├── layer │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── __tests__ │ │ ├── layer.test.ts │ │ ├── test-custom-layer-lmp.ts │ │ ├── test-layer-lmp.ts │ │ ├── test-layer-mgr.ts │ │ ├── test-layer-type.ts │ │ ├── test-render-node.ts │ │ └── test-root.ts │ ├── dist │ │ ├── cjs │ │ │ ├── lib │ │ │ │ ├── index.js │ │ │ │ └── index.min.js │ │ │ └── types │ │ │ │ └── index.d.ts │ │ ├── es │ │ │ ├── lib │ │ │ │ ├── index.min.mjs │ │ │ │ └── index.mjs │ │ │ └── types │ │ │ │ └── index.d.ts │ │ ├── iife │ │ │ ├── layer.d.ts │ │ │ ├── layer.js │ │ │ ├── layer.js.map │ │ │ └── layer.min.js │ │ ├── system │ │ │ ├── lib │ │ │ │ ├── index.js │ │ │ │ └── index.min.js │ │ │ └── types │ │ │ │ └── index.d.ts │ │ └── umd │ │ │ ├── layer.d.ts │ │ │ ├── layer.js │ │ │ ├── layer.js.map │ │ │ └── layer.min.js │ ├── egf.compile.js │ ├── package.json │ ├── src │ │ ├── index.ts │ │ ├── layer-interfaces.ts │ │ └── layer-mgr.ts │ └── tsconfig.json └── obj-pool │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── __tests__ │ ├── obj-pool-mgr.test.ts │ └── obj-pool.test.ts │ ├── dist │ ├── cjs │ │ ├── lib │ │ │ ├── index.js │ │ │ └── index.min.js │ │ └── types │ │ │ └── index.d.ts │ ├── es │ │ ├── lib │ │ │ ├── index.min.mjs │ │ │ └── index.mjs │ │ └── types │ │ │ └── index.d.ts │ ├── iife │ │ ├── objPool.d.ts │ │ ├── objPool.js │ │ ├── objPool.js.map │ │ └── objPool.min.js │ ├── system │ │ ├── lib │ │ │ ├── index.js │ │ │ └── index.min.js │ │ └── types │ │ │ └── index.d.ts │ └── umd │ │ ├── objPool.d.ts │ │ ├── objPool.js │ │ ├── objPool.js.map │ │ └── objPool.min.js │ ├── egf.compile.js │ ├── package.json │ ├── src │ ├── index.ts │ ├── obj-pool-interfaces.ts │ ├── obj-pool-mgr.ts │ └── obj-pool.ts │ └── tsconfig.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── scripts ├── checkPnpm.js └── copyDocs.js ├── tool-packages ├── excel2all-cli │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── __tests__ │ │ ├── e2a.config.js │ │ ├── test-export │ │ │ ├── bundle.json │ │ │ ├── dts │ │ │ │ └── tableMap.d.ts │ │ │ ├── export-jsons │ │ │ │ ├── LongColKeySetting.json │ │ │ │ ├── MergeTableSetting.json │ │ │ │ ├── ObjTypeSetting.json │ │ │ │ ├── TableTypeCSVSetting.json │ │ │ │ ├── TableTypeSetting.json │ │ │ │ └── WithErrorTableSetting.json │ │ │ └── tbundle.json │ │ ├── testConfig.js │ │ └── testCustomHook.js │ ├── bin │ │ ├── cli.js │ │ ├── config.temp.js │ │ └── get-parse-config.js │ ├── package-lock.json │ └── package.json └── excel2all │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── __test__ │ ├── .excel2all │ │ └── .e2aprmc │ ├── convert_customHook_test.js │ ├── convert_customValueTrans_test.js │ ├── convert_mutiDtsFile_test.js │ ├── convert_test.js │ ├── convert_useCache_test.js │ ├── test-excel-files │ │ ├── EmptySetting.xlsx │ │ ├── LongColKeySetting.xlsx │ │ ├── MergeTableFolder1 │ │ │ └── MergeTableSetting.xlsx │ │ ├── MergeTableFolder2 │ │ │ └── MergeTableSetting.xlsx │ │ ├── ObjTypeSetting.xlsx │ │ ├── TableTypeCSVSetting.csv │ │ ├── TableTypeSetting.xlsx │ │ └── WithErrorTableSetting.xlsx │ ├── test-export │ │ ├── bundle.json │ │ ├── dts │ │ │ ├── LongColKeySetting.d.ts │ │ │ ├── MergeTableSetting.d.ts │ │ │ ├── ObjTypeSetting.d.ts │ │ │ ├── TableTypeCSVSetting.d.ts │ │ │ ├── TableTypeSetting.d.ts │ │ │ ├── WithErrorTableSetting.d.ts │ │ │ └── tableMap.d.ts │ │ ├── export-jsons │ │ │ ├── LongColKeySetting.json │ │ │ ├── MergeTableSetting.json │ │ │ ├── ObjTypeSetting.json │ │ │ ├── TableTypeCSVSetting.json │ │ │ ├── TableTypeSetting.json │ │ │ └── WithErrorTableSetting.json │ │ └── tbundle.json │ └── testFileMatch_test.js │ ├── dist │ ├── cjs │ │ ├── lib │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ └── index.min.js │ │ └── types │ │ │ └── index.d.ts │ └── es │ │ ├── lib │ │ ├── index.mjs │ │ └── index.mjs.map │ │ └── types │ │ └── index.d.ts │ ├── egf.compile.js │ ├── package-lock.json │ ├── package.json │ ├── src │ ├── convert.ts │ ├── default-convert-hook.ts │ ├── default-result-transformer.ts │ ├── default-table-parser.ts │ ├── default-value-func-map.ts │ ├── file-utils.ts │ ├── get-os-eol.ts │ ├── index.ts │ ├── interfaces.ts │ ├── loger.ts │ └── table-utils.ts │ └── tsconfig.json ├── tools └── typedoc │ ├── typedoc-theme │ ├── LICENSE │ ├── README.md │ ├── bin │ │ ├── default │ │ │ ├── assets │ │ │ │ ├── css │ │ │ │ │ └── main.css │ │ │ │ ├── images │ │ │ │ │ ├── egf-logo.svg │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── icons@2x.png │ │ │ │ │ ├── widgets.png │ │ │ │ │ └── widgets@2x.png │ │ │ │ └── js │ │ │ │ │ └── main.js │ │ │ ├── layouts │ │ │ │ └── default.hbs │ │ │ ├── partials │ │ │ │ ├── analytics.hbs │ │ │ │ ├── breadcrumb.hbs │ │ │ │ ├── comment.hbs │ │ │ │ ├── footer.hbs │ │ │ │ ├── header.hbs │ │ │ │ ├── hierarchy.hbs │ │ │ │ ├── index.hbs │ │ │ │ ├── member.declaration.hbs │ │ │ │ ├── member.getterSetter.hbs │ │ │ │ ├── member.hbs │ │ │ │ ├── member.reference.hbs │ │ │ │ ├── member.signature.body.hbs │ │ │ │ ├── member.signature.title.hbs │ │ │ │ ├── member.signatures.hbs │ │ │ │ ├── member.sources.hbs │ │ │ │ ├── members.group.hbs │ │ │ │ ├── members.hbs │ │ │ │ ├── navigation.hbs │ │ │ │ ├── parameter.hbs │ │ │ │ ├── toc.hbs │ │ │ │ ├── toc.root.hbs │ │ │ │ ├── type.hbs │ │ │ │ ├── typeAndParent.hbs │ │ │ │ └── typeParameters.hbs │ │ │ └── templates │ │ │ │ ├── index.hbs │ │ │ │ └── reflection.hbs │ │ ├── minimal │ │ │ ├── assets │ │ │ │ ├── css │ │ │ │ │ └── main.css │ │ │ │ └── js │ │ │ │ │ └── main.js │ │ │ ├── layouts │ │ │ │ └── default.hbs │ │ │ ├── partials │ │ │ │ ├── analytics.hbs │ │ │ │ ├── breadcrumb.hbs │ │ │ │ ├── comment.hbs │ │ │ │ ├── footer.hbs │ │ │ │ ├── header.hbs │ │ │ │ ├── hierarchy.hbs │ │ │ │ ├── index.hbs │ │ │ │ ├── member.declaration.hbs │ │ │ │ ├── member.getterSetter.hbs │ │ │ │ ├── member.hbs │ │ │ │ ├── member.reference.hbs │ │ │ │ ├── member.signature.body.hbs │ │ │ │ ├── member.signature.title.hbs │ │ │ │ ├── member.signatures.hbs │ │ │ │ ├── member.sources.hbs │ │ │ │ ├── members.group.hbs │ │ │ │ ├── members.hbs │ │ │ │ ├── navigation.hbs │ │ │ │ ├── parameter.hbs │ │ │ │ ├── toc.hbs │ │ │ │ ├── toc.root.hbs │ │ │ │ ├── type.hbs │ │ │ │ ├── typeAndParent.hbs │ │ │ │ └── typeParameters.hbs │ │ │ └── templates │ │ │ │ └── index.hbs │ │ └── plugin.js │ └── package.json │ └── typedoc.js ├── transed-packages ├── .gitattributes ├── c3daxios │ ├── CHANGELOG.md │ ├── README.md │ ├── __tests__ │ │ └── test.test.ts │ ├── dist │ │ ├── es │ │ │ ├── lib │ │ │ │ ├── index.min.mjs │ │ │ │ └── index.mjs │ │ │ └── types │ │ │ │ └── index.d.ts │ │ └── system │ │ │ ├── lib │ │ │ ├── index.js │ │ │ └── index.js.map │ │ │ └── types │ │ │ └── index.d.ts │ ├── egf.compile.js │ ├── package.json │ ├── src │ │ └── index.ts │ └── tsconfig.json ├── emitter3 │ ├── CHANGELOG.md │ ├── README.md │ ├── __tests__ │ │ └── test.test.ts │ ├── dist │ │ ├── es │ │ │ ├── lib │ │ │ │ ├── index.min.mjs │ │ │ │ └── index.mjs │ │ │ └── types │ │ │ │ └── index.d.ts │ │ └── system │ │ │ ├── lib │ │ │ ├── index.js │ │ │ └── index.js.map │ │ │ └── types │ │ │ └── index.d.ts │ ├── egf.compile.js │ ├── package.json │ ├── src │ │ └── index.ts │ └── tsconfig.json └── xstate2c3d │ ├── CHANGELOG.md │ ├── README.md │ ├── __tests__ │ └── test.test.ts │ ├── dist │ ├── es │ │ ├── lib │ │ │ ├── index.min.mjs │ │ │ └── index.mjs │ │ └── types │ │ │ └── index.d.ts │ └── system │ │ ├── lib │ │ ├── index.js │ │ └── index.js.map │ │ └── types │ │ └── index.d.ts │ ├── egf.compile.js │ ├── package.json │ ├── src │ └── index.ts │ └── tsconfig.json └── tsconfig.test.json /.commitlintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | extends: ['@commitlint/config-lerna-scopes'] 3 | }; -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/ISSUE_TEMPLATE_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/.github/ISSUE_TEMPLATE/ISSUE_TEMPLATE_1.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/ISSUE_TEMPLATE_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/.github/ISSUE_TEMPLATE/ISSUE_TEMPLATE_2.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/_/husky.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/.husky/_/husky.sh -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | pnpm commitlint --edit 5 | -------------------------------------------------------------------------------- /.husky/post-checkout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/.husky/post-checkout -------------------------------------------------------------------------------- /.husky/post-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/.husky/post-commit -------------------------------------------------------------------------------- /.husky/post-merge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/.husky/post-merge -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npm run lint-staged 5 | -------------------------------------------------------------------------------- /.husky/pre-push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/.husky/pre-push -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/.npmrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/.prettierrc.yml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/README.md -------------------------------------------------------------------------------- /ccc_editor_fix/editor_require_fix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/ccc_editor_fix/editor_require_fix.js -------------------------------------------------------------------------------- /designs/EgfCoreDesign.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/designs/EgfCoreDesign.drawio -------------------------------------------------------------------------------- /designs/EgfCoreLifeCircle.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/designs/EgfCoreLifeCircle.drawio -------------------------------------------------------------------------------- /designs/FrameworkDesign.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/designs/FrameworkDesign.drawio -------------------------------------------------------------------------------- /designs/GameApplication.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/designs/GameApplication.drawio -------------------------------------------------------------------------------- /designs/NetDesign.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/designs/NetDesign.drawio -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_coverpage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/_coverpage.md -------------------------------------------------------------------------------- /docs/_navbar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/_navbar.md -------------------------------------------------------------------------------- /docs/_sidebar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/_sidebar.md -------------------------------------------------------------------------------- /docs/api/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/assets/css/main.css -------------------------------------------------------------------------------- /docs/api/assets/images/egf-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/assets/images/egf-logo.svg -------------------------------------------------------------------------------- /docs/api/assets/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/assets/images/icons.png -------------------------------------------------------------------------------- /docs/api/assets/images/icons@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/assets/images/icons@2x.png -------------------------------------------------------------------------------- /docs/api/assets/images/widgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/assets/images/widgets.png -------------------------------------------------------------------------------- /docs/api/assets/images/widgets@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/assets/images/widgets@2x.png -------------------------------------------------------------------------------- /docs/api/assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/assets/js/main.js -------------------------------------------------------------------------------- /docs/api/assets/js/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/assets/js/search.json -------------------------------------------------------------------------------- /docs/api/classes/broadcast.broadcast-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/classes/broadcast.broadcast-1.html -------------------------------------------------------------------------------- /docs/api/classes/c3d_comp_template.testcomp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/classes/c3d_comp_template.testcomp.html -------------------------------------------------------------------------------- /docs/api/classes/cli.bc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/classes/cli.bc.html -------------------------------------------------------------------------------- /docs/api/classes/cli.classa-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/classes/cli.classa-1.html -------------------------------------------------------------------------------- /docs/api/classes/cli.classa-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/classes/cli.classa-2.html -------------------------------------------------------------------------------- /docs/api/classes/cli.classa.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/classes/cli.classa.html -------------------------------------------------------------------------------- /docs/api/classes/cli.classb-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/classes/cli.classb-1.html -------------------------------------------------------------------------------- /docs/api/classes/cli.classb-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/classes/cli.classb-2.html -------------------------------------------------------------------------------- /docs/api/classes/cli.classb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/classes/cli.classb.html -------------------------------------------------------------------------------- /docs/api/classes/cli.classc-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/classes/cli.classc-1.html -------------------------------------------------------------------------------- /docs/api/classes/cli.classc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/classes/cli.classc.html -------------------------------------------------------------------------------- /docs/api/classes/cli.classd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/classes/cli.classd.html -------------------------------------------------------------------------------- /docs/api/classes/cli.refotherpkg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/classes/cli.refotherpkg.html -------------------------------------------------------------------------------- /docs/api/classes/core.app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/classes/core.app.html -------------------------------------------------------------------------------- /docs/api/classes/display_ctrl.dpcmgr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/classes/display_ctrl.dpcmgr.html -------------------------------------------------------------------------------- /docs/api/classes/dpctrl_c3d.layer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/classes/dpctrl_c3d.layer.html -------------------------------------------------------------------------------- /docs/api/classes/dpctrl_c3d.nodectrl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/classes/dpctrl_c3d.nodectrl.html -------------------------------------------------------------------------------- /docs/api/classes/dpctrl_ccc.layer.eventtype.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/classes/dpctrl_ccc.layer.eventtype.html -------------------------------------------------------------------------------- /docs/api/classes/dpctrl_ccc.layer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/classes/dpctrl_ccc.layer.html -------------------------------------------------------------------------------- /docs/api/classes/dpctrl_ccc.nodectrl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/classes/dpctrl_ccc.nodectrl.html -------------------------------------------------------------------------------- /docs/api/classes/dpctrl_fgui.bindertool.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/classes/dpctrl_fgui.bindertool.html -------------------------------------------------------------------------------- /docs/api/classes/dpctrl_fgui.fbindertool.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/classes/dpctrl_fgui.fbindertool.html -------------------------------------------------------------------------------- /docs/api/classes/dpctrl_fgui.fdpctrl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/classes/dpctrl_fgui.fdpctrl.html -------------------------------------------------------------------------------- /docs/api/classes/dpctrl_fgui.flayer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/classes/dpctrl_fgui.flayer.html -------------------------------------------------------------------------------- /docs/api/classes/dpctrl_fguicc.bindertool.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/classes/dpctrl_fguicc.bindertool.html -------------------------------------------------------------------------------- /docs/api/classes/dpctrl_fguicc.fbindertool.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/classes/dpctrl_fguicc.fbindertool.html -------------------------------------------------------------------------------- /docs/api/classes/dpctrl_fguicc.fdpctrl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/classes/dpctrl_fguicc.fdpctrl.html -------------------------------------------------------------------------------- /docs/api/classes/dpctrl_fguicc.flayer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/classes/dpctrl_fguicc.flayer.html -------------------------------------------------------------------------------- /docs/api/classes/enet.defaultneteventhandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/classes/enet.defaultneteventhandler.html -------------------------------------------------------------------------------- /docs/api/classes/enet.defaultprotohandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/classes/enet.defaultprotohandler.html -------------------------------------------------------------------------------- /docs/api/classes/enet.netnode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/classes/enet.netnode.html -------------------------------------------------------------------------------- /docs/api/classes/enet.wsocket.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/classes/enet.wsocket.html -------------------------------------------------------------------------------- /docs/api/classes/enet_pbws.byte.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/classes/enet_pbws.byte.html -------------------------------------------------------------------------------- /docs/api/classes/enet_pbws.pbprotohandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/classes/enet_pbws.pbprotohandler.html -------------------------------------------------------------------------------- /docs/api/classes/enet_pinus_pb.bytearray.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/classes/enet_pinus_pb.bytearray.html -------------------------------------------------------------------------------- /docs/api/classes/enet_pinus_pb.endian.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/classes/enet_pinus_pb.endian.html -------------------------------------------------------------------------------- /docs/api/classes/enet_pinus_pb.message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/classes/enet_pinus_pb.message.html -------------------------------------------------------------------------------- /docs/api/classes/enet_pinus_pb.package.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/classes/enet_pinus_pb.package.html -------------------------------------------------------------------------------- /docs/api/classes/enet_pinus_pb.protobuf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/classes/enet_pinus_pb.protobuf.html -------------------------------------------------------------------------------- /docs/api/classes/enet_pinus_pb.protocol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/classes/enet_pinus_pb.protocol.html -------------------------------------------------------------------------------- /docs/api/classes/enet_pinus_pb.routedic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/classes/enet_pinus_pb.routedic.html -------------------------------------------------------------------------------- /docs/api/classes/excel2all.defaultconverthook.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/classes/excel2all.defaultconverthook.html -------------------------------------------------------------------------------- /docs/api/classes/excel2all.logger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/classes/excel2all.logger.html -------------------------------------------------------------------------------- /docs/api/classes/layer.layermgr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/classes/layer.layermgr.html -------------------------------------------------------------------------------- /docs/api/classes/obj_pool.baseobjpool.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/classes/obj_pool.baseobjpool.html -------------------------------------------------------------------------------- /docs/api/classes/obj_pool.objpoolmgr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/classes/obj_pool.objpoolmgr.html -------------------------------------------------------------------------------- /docs/api/enums/enet.packagetype.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/enums/enet.packagetype.html -------------------------------------------------------------------------------- /docs/api/enums/enet.socketstate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/enums/enet.socketstate.html -------------------------------------------------------------------------------- /docs/api/enums/enet_pbws.packagetype.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/enums/enet_pbws.packagetype.html -------------------------------------------------------------------------------- /docs/api/enums/enet_pinus_pb.bytearraysize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/enums/enet_pinus_pb.bytearraysize.html -------------------------------------------------------------------------------- /docs/api/enums/enet_pinus_pb.endianconst.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/enums/enet_pinus_pb.endianconst.html -------------------------------------------------------------------------------- /docs/api/enums/enet_pinus_pb.packagetype.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/enums/enet_pinus_pb.packagetype.html -------------------------------------------------------------------------------- /docs/api/enums/excel2all.loglevelenum.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/enums/excel2all.loglevelenum.html -------------------------------------------------------------------------------- /docs/api/enums/excel2all.tabletype.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/enums/excel2all.tabletype.html -------------------------------------------------------------------------------- /docs/api/globals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/globals.html -------------------------------------------------------------------------------- /docs/api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/index.html -------------------------------------------------------------------------------- /docs/api/interfaces/core.__global.egf.iapp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/interfaces/core.__global.egf.iapp.html -------------------------------------------------------------------------------- /docs/api/interfaces/core.__global.egf.imodule.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/interfaces/core.__global.egf.imodule.html -------------------------------------------------------------------------------- /docs/api/interfaces/dpctrl_fgui.fbinderplugin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/interfaces/dpctrl_fgui.fbinderplugin.html -------------------------------------------------------------------------------- /docs/api/interfaces/dpctrl_fgui.interfaces.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/interfaces/dpctrl_fgui.interfaces.html -------------------------------------------------------------------------------- /docs/api/interfaces/dpctrl_fguicc.interfaces.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/interfaces/dpctrl_fguicc.interfaces.html -------------------------------------------------------------------------------- /docs/api/interfaces/enet.__global.enet.inode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/interfaces/enet.__global.enet.inode.html -------------------------------------------------------------------------------- /docs/api/interfaces/enet_pinus_pb.imessage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/interfaces/enet_pinus_pb.imessage.html -------------------------------------------------------------------------------- /docs/api/interfaces/enet_pinus_pb.ipackage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/interfaces/enet_pinus_pb.ipackage.html -------------------------------------------------------------------------------- /docs/api/interfaces/excel2all.interfaces.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/interfaces/excel2all.interfaces.html -------------------------------------------------------------------------------- /docs/api/interfaces/layer.__global.layer.imgr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/interfaces/layer.__global.layer.imgr.html -------------------------------------------------------------------------------- /docs/api/modules/broadcast.__global.broadcast.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/modules/broadcast.__global.broadcast.html -------------------------------------------------------------------------------- /docs/api/modules/broadcast.__global.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/modules/broadcast.__global.html -------------------------------------------------------------------------------- /docs/api/modules/broadcast.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/modules/broadcast.html -------------------------------------------------------------------------------- /docs/api/modules/c3d_comp_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/modules/c3d_comp_template.html -------------------------------------------------------------------------------- /docs/api/modules/c3daxios.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/modules/c3daxios.html -------------------------------------------------------------------------------- /docs/api/modules/cli.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/modules/cli.html -------------------------------------------------------------------------------- /docs/api/modules/core.__global.egf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/modules/core.__global.egf.html -------------------------------------------------------------------------------- /docs/api/modules/core.__global.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/modules/core.__global.html -------------------------------------------------------------------------------- /docs/api/modules/core.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/modules/core.html -------------------------------------------------------------------------------- /docs/api/modules/display_ctrl.__global.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/modules/display_ctrl.__global.html -------------------------------------------------------------------------------- /docs/api/modules/display_ctrl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/modules/display_ctrl.html -------------------------------------------------------------------------------- /docs/api/modules/dpctrl_c3d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/modules/dpctrl_c3d.html -------------------------------------------------------------------------------- /docs/api/modules/dpctrl_ccc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/modules/dpctrl_ccc.html -------------------------------------------------------------------------------- /docs/api/modules/dpctrl_fgui.__global-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/modules/dpctrl_fgui.__global-1.html -------------------------------------------------------------------------------- /docs/api/modules/dpctrl_fgui.__global.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/modules/dpctrl_fgui.__global.html -------------------------------------------------------------------------------- /docs/api/modules/dpctrl_fgui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/modules/dpctrl_fgui.html -------------------------------------------------------------------------------- /docs/api/modules/dpctrl_fguicc.__global-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/modules/dpctrl_fguicc.__global-1.html -------------------------------------------------------------------------------- /docs/api/modules/dpctrl_fguicc.__global.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/modules/dpctrl_fguicc.__global.html -------------------------------------------------------------------------------- /docs/api/modules/dpctrl_fguicc._fairygui_cc_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/modules/dpctrl_fguicc._fairygui_cc_.html -------------------------------------------------------------------------------- /docs/api/modules/dpctrl_fguicc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/modules/dpctrl_fguicc.html -------------------------------------------------------------------------------- /docs/api/modules/egf_protobuf_cli.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/modules/egf_protobuf_cli.html -------------------------------------------------------------------------------- /docs/api/modules/emitter3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/modules/emitter3.html -------------------------------------------------------------------------------- /docs/api/modules/enet.__global.enet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/modules/enet.__global.enet.html -------------------------------------------------------------------------------- /docs/api/modules/enet.__global.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/modules/enet.__global.html -------------------------------------------------------------------------------- /docs/api/modules/enet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/modules/enet.html -------------------------------------------------------------------------------- /docs/api/modules/enet_pbws.__global.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/modules/enet_pbws.__global.html -------------------------------------------------------------------------------- /docs/api/modules/enet_pbws.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/modules/enet_pbws.html -------------------------------------------------------------------------------- /docs/api/modules/enet_pinus_pb.__global-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/modules/enet_pinus_pb.__global-1.html -------------------------------------------------------------------------------- /docs/api/modules/enet_pinus_pb.__global.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/modules/enet_pinus_pb.__global.html -------------------------------------------------------------------------------- /docs/api/modules/enet_pinus_pb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/modules/enet_pinus_pb.html -------------------------------------------------------------------------------- /docs/api/modules/excel2all.__global-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/modules/excel2all.__global-1.html -------------------------------------------------------------------------------- /docs/api/modules/excel2all.__global-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/modules/excel2all.__global-2.html -------------------------------------------------------------------------------- /docs/api/modules/excel2all.__global-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/modules/excel2all.__global-3.html -------------------------------------------------------------------------------- /docs/api/modules/excel2all.__global.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/modules/excel2all.__global.html -------------------------------------------------------------------------------- /docs/api/modules/excel2all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/modules/excel2all.html -------------------------------------------------------------------------------- /docs/api/modules/layer.__global.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/modules/layer.__global.html -------------------------------------------------------------------------------- /docs/api/modules/layer.__global.layer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/modules/layer.__global.layer.html -------------------------------------------------------------------------------- /docs/api/modules/layer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/modules/layer.html -------------------------------------------------------------------------------- /docs/api/modules/obj_pool.__global.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/modules/obj_pool.__global.html -------------------------------------------------------------------------------- /docs/api/modules/obj_pool.__global.objpool.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/modules/obj_pool.__global.objpool.html -------------------------------------------------------------------------------- /docs/api/modules/obj_pool.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/modules/obj_pool.html -------------------------------------------------------------------------------- /docs/api/modules/xstate2c3d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/api/modules/xstate2c3d.html -------------------------------------------------------------------------------- /docs/examples/ccc-bigproj-example/ext-res/.svn/新建文本文档.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/examples/ccc-bigproj-example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/examples/ccc-bigproj-example/index.html -------------------------------------------------------------------------------- /docs/examples/ccc-bigproj-example/main.afd93.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/examples/ccc-bigproj-example/main.afd93.js -------------------------------------------------------------------------------- /docs/examples/ccc-bigproj-example/splash.85cfd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/examples/ccc-bigproj-example/splash.85cfd.png -------------------------------------------------------------------------------- /docs/examples/egf-ccc-full/web-desktop/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/examples/egf-ccc-full/web-desktop/index.html -------------------------------------------------------------------------------- /docs/examples/egf-ccc-full/web-mobile/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/examples/egf-ccc-full/web-mobile/index.html -------------------------------------------------------------------------------- /docs/examples/egf-ccc3-full/web-desktop/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/examples/egf-ccc3-full/web-desktop/index.html -------------------------------------------------------------------------------- /docs/examples/egf-ccc3-full/web-desktop/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/examples/egf-ccc3-full/web-desktop/style.css -------------------------------------------------------------------------------- /docs/examples/egf-ccc3-full/web-mobile/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/examples/egf-ccc3-full/web-mobile/index.html -------------------------------------------------------------------------------- /docs/examples/egf-ccc3-full/web-mobile/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/examples/egf-ccc3-full/web-mobile/style.css -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/light-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/light-icon.png -------------------------------------------------------------------------------- /docs/light-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/light-icon.svg -------------------------------------------------------------------------------- /docs/packages/broadcast/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/packages/broadcast/CHANGELOG.md -------------------------------------------------------------------------------- /docs/packages/broadcast/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/packages/broadcast/README.md -------------------------------------------------------------------------------- /docs/packages/c3d-comp-template/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/packages/c3d-comp-template/CHANGELOG.md -------------------------------------------------------------------------------- /docs/packages/c3d-comp-template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/packages/c3d-comp-template/README.md -------------------------------------------------------------------------------- /docs/packages/cli/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/packages/cli/CHANGELOG.md -------------------------------------------------------------------------------- /docs/packages/cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/packages/cli/README.md -------------------------------------------------------------------------------- /docs/packages/cli/package-template/README.md: -------------------------------------------------------------------------------- 1 | # `xxx` 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/packages/core/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/packages/core/CHANGELOG.md -------------------------------------------------------------------------------- /docs/packages/core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/packages/core/README.md -------------------------------------------------------------------------------- /docs/packages/display-ctrl/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/packages/display-ctrl/CHANGELOG.md -------------------------------------------------------------------------------- /docs/packages/display-ctrl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/packages/display-ctrl/README.md -------------------------------------------------------------------------------- /docs/packages/dpctrl-c3d/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/packages/dpctrl-c3d/CHANGELOG.md -------------------------------------------------------------------------------- /docs/packages/dpctrl-c3d/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/packages/dpctrl-c3d/README.md -------------------------------------------------------------------------------- /docs/packages/dpctrl-ccc/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/packages/dpctrl-ccc/CHANGELOG.md -------------------------------------------------------------------------------- /docs/packages/dpctrl-ccc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/packages/dpctrl-ccc/README.md -------------------------------------------------------------------------------- /docs/packages/dpctrl-fgui/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/packages/dpctrl-fgui/CHANGELOG.md -------------------------------------------------------------------------------- /docs/packages/dpctrl-fgui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/packages/dpctrl-fgui/README.md -------------------------------------------------------------------------------- /docs/packages/dpctrl-fguicc/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/packages/dpctrl-fguicc/CHANGELOG.md -------------------------------------------------------------------------------- /docs/packages/dpctrl-fguicc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/packages/dpctrl-fguicc/README.md -------------------------------------------------------------------------------- /docs/packages/egf-protobuf-cli/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/packages/egf-protobuf-cli/CHANGELOG.md -------------------------------------------------------------------------------- /docs/packages/egf-protobuf-cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/packages/egf-protobuf-cli/README.md -------------------------------------------------------------------------------- /docs/packages/enet-pbws/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/packages/enet-pbws/CHANGELOG.md -------------------------------------------------------------------------------- /docs/packages/enet-pbws/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/packages/enet-pbws/README.md -------------------------------------------------------------------------------- /docs/packages/enet-pinus-pb/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/packages/enet-pinus-pb/CHANGELOG.md -------------------------------------------------------------------------------- /docs/packages/enet-pinus-pb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/packages/enet-pinus-pb/README.md -------------------------------------------------------------------------------- /docs/packages/enet/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/packages/enet/CHANGELOG.md -------------------------------------------------------------------------------- /docs/packages/enet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/packages/enet/README.md -------------------------------------------------------------------------------- /docs/packages/layer/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/packages/layer/CHANGELOG.md -------------------------------------------------------------------------------- /docs/packages/layer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/packages/layer/README.md -------------------------------------------------------------------------------- /docs/packages/obj-pool/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/packages/obj-pool/CHANGELOG.md -------------------------------------------------------------------------------- /docs/packages/obj-pool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/packages/obj-pool/README.md -------------------------------------------------------------------------------- /docs/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/quick-start.md -------------------------------------------------------------------------------- /docs/testReport/clover.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/testReport/clover.xml -------------------------------------------------------------------------------- /docs/testReport/coverage-final.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/testReport/coverage-final.json -------------------------------------------------------------------------------- /docs/testReport/lcov-report/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/testReport/lcov-report/base.css -------------------------------------------------------------------------------- /docs/testReport/lcov-report/block-navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/testReport/lcov-report/block-navigation.js -------------------------------------------------------------------------------- /docs/testReport/lcov-report/core/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/testReport/lcov-report/core/src/index.html -------------------------------------------------------------------------------- /docs/testReport/lcov-report/enet/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/testReport/lcov-report/enet/src/index.html -------------------------------------------------------------------------------- /docs/testReport/lcov-report/enet/src/index.ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/testReport/lcov-report/enet/src/index.ts.html -------------------------------------------------------------------------------- /docs/testReport/lcov-report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/testReport/lcov-report/index.html -------------------------------------------------------------------------------- /docs/testReport/lcov-report/layer/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/testReport/lcov-report/layer/src/index.html -------------------------------------------------------------------------------- /docs/testReport/lcov-report/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/testReport/lcov-report/prettify.css -------------------------------------------------------------------------------- /docs/testReport/lcov-report/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/testReport/lcov-report/prettify.js -------------------------------------------------------------------------------- /docs/testReport/lcov-report/sort-arrow-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/testReport/lcov-report/sort-arrow-sprite.png -------------------------------------------------------------------------------- /docs/testReport/lcov-report/sorter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/testReport/lcov-report/sorter.js -------------------------------------------------------------------------------- /docs/testReport/lcov.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/testReport/lcov.info -------------------------------------------------------------------------------- /docs/tool-packages/excel2all-cli/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/tool-packages/excel2all-cli/CHANGELOG.md -------------------------------------------------------------------------------- /docs/tool-packages/excel2all-cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/tool-packages/excel2all-cli/README.md -------------------------------------------------------------------------------- /docs/tool-packages/excel2all/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/tool-packages/excel2all/CHANGELOG.md -------------------------------------------------------------------------------- /docs/tool-packages/excel2all/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/docs/tool-packages/excel2all/README.md -------------------------------------------------------------------------------- /examples/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/.gitattributes -------------------------------------------------------------------------------- /examples/egf-ccc-full/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-ccc-full/.gitignore -------------------------------------------------------------------------------- /examples/egf-ccc-full/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-ccc-full/CHANGELOG.md -------------------------------------------------------------------------------- /examples/egf-ccc-full/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-ccc-full/README.md -------------------------------------------------------------------------------- /examples/egf-ccc-full/assets/Main.fire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-ccc-full/assets/Main.fire -------------------------------------------------------------------------------- /examples/egf-ccc-full/assets/Main.fire.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-ccc-full/assets/Main.fire.meta -------------------------------------------------------------------------------- /examples/egf-ccc-full/assets/editor_fixs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-ccc-full/assets/editor_fixs.meta -------------------------------------------------------------------------------- /examples/egf-ccc-full/assets/libs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-ccc-full/assets/libs.meta -------------------------------------------------------------------------------- /examples/egf-ccc-full/assets/libs/fairygui.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-ccc-full/assets/libs/fairygui.meta -------------------------------------------------------------------------------- /examples/egf-ccc-full/assets/resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-ccc-full/assets/resources.meta -------------------------------------------------------------------------------- /examples/egf-ccc-full/assets/src.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-ccc-full/assets/src.meta -------------------------------------------------------------------------------- /examples/egf-ccc-full/assets/src/AppMainComp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-ccc-full/assets/src/AppMainComp.ts -------------------------------------------------------------------------------- /examples/egf-ccc-full/assets/src/DemoModule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-ccc-full/assets/src/DemoModule.ts -------------------------------------------------------------------------------- /examples/egf-ccc-full/assets/src/LayerType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-ccc-full/assets/src/LayerType.ts -------------------------------------------------------------------------------- /examples/egf-ccc-full/assets/src/LayerType.ts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-ccc-full/assets/src/LayerType.ts.meta -------------------------------------------------------------------------------- /examples/egf-ccc-full/assets/src/ModuleMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-ccc-full/assets/src/ModuleMap.ts -------------------------------------------------------------------------------- /examples/egf-ccc-full/assets/src/ModuleMap.ts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-ccc-full/assets/src/ModuleMap.ts.meta -------------------------------------------------------------------------------- /examples/egf-ccc-full/assets/src/Utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-ccc-full/assets/src/Utils.ts -------------------------------------------------------------------------------- /examples/egf-ccc-full/assets/src/Utils.ts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-ccc-full/assets/src/Utils.ts.meta -------------------------------------------------------------------------------- /examples/egf-ccc-full/assets/test-main.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-ccc-full/assets/test-main.meta -------------------------------------------------------------------------------- /examples/egf-ccc-full/assets/test-main/ListItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-ccc-full/assets/test-main/ListItem.ts -------------------------------------------------------------------------------- /examples/egf-ccc-full/assets/test-main/TestMain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-ccc-full/assets/test-main/TestMain.ts -------------------------------------------------------------------------------- /examples/egf-ccc-full/assets/tests-res.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-ccc-full/assets/tests-res.meta -------------------------------------------------------------------------------- /examples/egf-ccc-full/assets/tests-res/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-ccc-full/assets/tests-res/bg.png -------------------------------------------------------------------------------- /examples/egf-ccc-full/assets/tests-res/bg.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-ccc-full/assets/tests-res/bg.png.meta -------------------------------------------------------------------------------- /examples/egf-ccc-full/assets/tests.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-ccc-full/assets/tests.meta -------------------------------------------------------------------------------- /examples/egf-ccc-full/assets/tests/broadcast.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-ccc-full/assets/tests/broadcast.meta -------------------------------------------------------------------------------- /examples/egf-ccc-full/assets/tests/fairygui.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-ccc-full/assets/tests/fairygui.meta -------------------------------------------------------------------------------- /examples/egf-ccc-full/build_fixs/_prelude.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-ccc-full/build_fixs/_prelude.js -------------------------------------------------------------------------------- /examples/egf-ccc-full/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-ccc-full/jsconfig.json -------------------------------------------------------------------------------- /examples/egf-ccc-full/libs/fairygui.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-ccc-full/libs/fairygui.d.ts -------------------------------------------------------------------------------- /examples/egf-ccc-full/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-ccc-full/package.json -------------------------------------------------------------------------------- /examples/egf-ccc-full/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-ccc-full/project.json -------------------------------------------------------------------------------- /examples/egf-ccc-full/settings/builder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-ccc-full/settings/builder.json -------------------------------------------------------------------------------- /examples/egf-ccc-full/settings/builder.panel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-ccc-full/settings/builder.panel.json -------------------------------------------------------------------------------- /examples/egf-ccc-full/settings/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-ccc-full/settings/project.json -------------------------------------------------------------------------------- /examples/egf-ccc-full/settings/services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-ccc-full/settings/services.json -------------------------------------------------------------------------------- /examples/egf-ccc-full/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-ccc-full/tsconfig.json -------------------------------------------------------------------------------- /examples/egf-ccc3-full/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-ccc3-full/.gitignore -------------------------------------------------------------------------------- /examples/egf-ccc3-full/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-ccc3-full/CHANGELOG.md -------------------------------------------------------------------------------- /examples/egf-ccc3-full/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-ccc3-full/README.md -------------------------------------------------------------------------------- /examples/egf-ccc3-full/assets/Main.scene: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-ccc3-full/assets/Main.scene -------------------------------------------------------------------------------- /examples/egf-ccc3-full/assets/Main.scene.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-ccc3-full/assets/Main.scene.meta -------------------------------------------------------------------------------- /examples/egf-ccc3-full/assets/editor_fixs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-ccc3-full/assets/editor_fixs.meta -------------------------------------------------------------------------------- /examples/egf-ccc3-full/assets/resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-ccc3-full/assets/resources.meta -------------------------------------------------------------------------------- /examples/egf-ccc3-full/assets/src.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-ccc3-full/assets/src.meta -------------------------------------------------------------------------------- /examples/egf-ccc3-full/assets/src/AppMainComp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-ccc3-full/assets/src/AppMainComp.ts -------------------------------------------------------------------------------- /examples/egf-ccc3-full/assets/src/DemoModule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-ccc3-full/assets/src/DemoModule.ts -------------------------------------------------------------------------------- /examples/egf-ccc3-full/assets/src/LayerType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-ccc3-full/assets/src/LayerType.ts -------------------------------------------------------------------------------- /examples/egf-ccc3-full/assets/src/ModuleMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-ccc3-full/assets/src/ModuleMap.ts -------------------------------------------------------------------------------- /examples/egf-ccc3-full/assets/src/Utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-ccc3-full/assets/src/Utils.ts -------------------------------------------------------------------------------- /examples/egf-ccc3-full/assets/src/Utils.ts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-ccc3-full/assets/src/Utils.ts.meta -------------------------------------------------------------------------------- /examples/egf-ccc3-full/assets/test-main.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-ccc3-full/assets/test-main.meta -------------------------------------------------------------------------------- /examples/egf-ccc3-full/assets/tests-res.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-ccc3-full/assets/tests-res.meta -------------------------------------------------------------------------------- /examples/egf-ccc3-full/assets/tests-res/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-ccc3-full/assets/tests-res/bg.png -------------------------------------------------------------------------------- /examples/egf-ccc3-full/assets/tests.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-ccc3-full/assets/tests.meta -------------------------------------------------------------------------------- /examples/egf-ccc3-full/assets/tests/broadcast.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-ccc3-full/assets/tests/broadcast.meta -------------------------------------------------------------------------------- /examples/egf-ccc3-full/assets/tests/fairygui.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-ccc3-full/assets/tests/fairygui.meta -------------------------------------------------------------------------------- /examples/egf-ccc3-full/ccdts/@types/editor/package/public/config.d.ts: -------------------------------------------------------------------------------- 1 | export declare const VERSION: string; 2 | -------------------------------------------------------------------------------- /examples/egf-ccc3-full/ccdts/@types/editor/profile/public/config.d.ts: -------------------------------------------------------------------------------- 1 | export declare const VERSION: string; 2 | -------------------------------------------------------------------------------- /examples/egf-ccc3-full/ccdts/@types/extension.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-ccc3-full/ccdts/@types/extension.d.ts -------------------------------------------------------------------------------- /examples/egf-ccc3-full/ccdts/@types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-ccc3-full/ccdts/@types/index.d.ts -------------------------------------------------------------------------------- /examples/egf-ccc3-full/ccdts/@types/message.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-ccc3-full/ccdts/@types/message.d.ts -------------------------------------------------------------------------------- /examples/egf-ccc3-full/ccdts/@types/packages/builder/@types/index.d.ts: -------------------------------------------------------------------------------- 1 | 2 | export * from './public'; 3 | -------------------------------------------------------------------------------- /examples/egf-ccc3-full/ccdts/@types/packages/preview/@types/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './protect/'; 2 | -------------------------------------------------------------------------------- /examples/egf-ccc3-full/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-ccc3-full/package-lock.json -------------------------------------------------------------------------------- /examples/egf-ccc3-full/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-ccc3-full/package.json -------------------------------------------------------------------------------- /examples/egf-ccc3-full/settings/v2/packages/builder.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.2.8" 3 | } 4 | -------------------------------------------------------------------------------- /examples/egf-ccc3-full/settings/v2/packages/device.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.0.1" 3 | } 4 | -------------------------------------------------------------------------------- /examples/egf-ccc3-full/settings/v2/packages/engine.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.0.5" 3 | } 4 | -------------------------------------------------------------------------------- /examples/egf-ccc3-full/settings/v2/packages/program.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.0.0" 3 | } 4 | -------------------------------------------------------------------------------- /examples/egf-ccc3-full/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-ccc3-full/tsconfig.json -------------------------------------------------------------------------------- /examples/egf-net-ws/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-net-ws/CHANGELOG.md -------------------------------------------------------------------------------- /examples/egf-net-ws/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-net-ws/README.md -------------------------------------------------------------------------------- /examples/egf-net-ws/egf-ccc-net-ws/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-net-ws/egf-ccc-net-ws/.gitignore -------------------------------------------------------------------------------- /examples/egf-net-ws/egf-ccc-net-ws/creator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-net-ws/egf-ccc-net-ws/creator.d.ts -------------------------------------------------------------------------------- /examples/egf-net-ws/egf-ccc-net-ws/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-net-ws/egf-ccc-net-ws/jsconfig.json -------------------------------------------------------------------------------- /examples/egf-net-ws/egf-ccc-net-ws/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-net-ws/egf-ccc-net-ws/project.json -------------------------------------------------------------------------------- /examples/egf-net-ws/egf-ccc-net-ws/settings/project.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /examples/egf-net-ws/egf-ccc-net-ws/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-net-ws/egf-ccc-net-ws/tsconfig.json -------------------------------------------------------------------------------- /examples/egf-net-ws/egf-simple-net-client/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-net-ws/egf-simple-net-client/index.js -------------------------------------------------------------------------------- /examples/egf-net-ws/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-net-ws/package.json -------------------------------------------------------------------------------- /examples/egf-net-ws/protobuf/epbconfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-net-ws/protobuf/epbconfig.js -------------------------------------------------------------------------------- /examples/egf-net-ws/protofiles/pb_base.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/egf-net-ws/protofiles/pb_base.proto -------------------------------------------------------------------------------- /examples/pinus-enet-chat/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/pinus-enet-chat/CHANGELOG.md -------------------------------------------------------------------------------- /examples/pinus-enet-chat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/pinus-enet-chat/README.md -------------------------------------------------------------------------------- /examples/pinus-enet-chat/game-server/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/pinus-enet-chat/game-server/app.ts -------------------------------------------------------------------------------- /examples/pinus-enet-chat/game-server/preload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/pinus-enet-chat/game-server/preload.ts -------------------------------------------------------------------------------- /examples/pinus-enet-chat/game-server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/pinus-enet-chat/game-server/tsconfig.json -------------------------------------------------------------------------------- /examples/pinus-enet-chat/game-server/tsrun.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/pinus-enet-chat/game-server/tsrun.js -------------------------------------------------------------------------------- /examples/pinus-enet-chat/npm-install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/pinus-enet-chat/npm-install.bat -------------------------------------------------------------------------------- /examples/pinus-enet-chat/npm-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/pinus-enet-chat/npm-install.sh -------------------------------------------------------------------------------- /examples/pinus-enet-chat/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/pinus-enet-chat/package.json -------------------------------------------------------------------------------- /examples/pinus-enet-chat/web-server/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/pinus-enet-chat/web-server/app.js -------------------------------------------------------------------------------- /examples/pinus-enet-chat/web-server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/pinus-enet-chat/web-server/package.json -------------------------------------------------------------------------------- /examples/pinus-enet-chat/web-server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/pinus-enet-chat/web-server/tsconfig.json -------------------------------------------------------------------------------- /examples/simple-ws-server/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/simple-ws-server/CHANGELOG.md -------------------------------------------------------------------------------- /examples/simple-ws-server/bin/ws-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/simple-ws-server/bin/ws-server.js -------------------------------------------------------------------------------- /examples/simple-ws-server/bin/ws-server.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/simple-ws-server/bin/ws-server.js.map -------------------------------------------------------------------------------- /examples/simple-ws-server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/simple-ws-server/package.json -------------------------------------------------------------------------------- /examples/simple-ws-server/simple-client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/simple-ws-server/simple-client/index.html -------------------------------------------------------------------------------- /examples/simple-ws-server/src/ws-server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/simple-ws-server/src/ws-server.ts -------------------------------------------------------------------------------- /examples/simple-ws-server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/examples/simple-ws-server/tsconfig.json -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/jest.config.js -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/lerna.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/package.json -------------------------------------------------------------------------------- /packages/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/.gitattributes -------------------------------------------------------------------------------- /packages/broadcast/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/broadcast/CHANGELOG.md -------------------------------------------------------------------------------- /packages/broadcast/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/broadcast/LICENSE -------------------------------------------------------------------------------- /packages/broadcast/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/broadcast/README.md -------------------------------------------------------------------------------- /packages/broadcast/__tests__/broadcast.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/broadcast/__tests__/broadcast.test.ts -------------------------------------------------------------------------------- /packages/broadcast/dist/cjs/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/broadcast/dist/cjs/lib/index.js -------------------------------------------------------------------------------- /packages/broadcast/dist/cjs/lib/index.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/broadcast/dist/cjs/lib/index.min.js -------------------------------------------------------------------------------- /packages/broadcast/dist/cjs/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/broadcast/dist/cjs/types/index.d.ts -------------------------------------------------------------------------------- /packages/broadcast/dist/es/lib/index.min.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/broadcast/dist/es/lib/index.min.mjs -------------------------------------------------------------------------------- /packages/broadcast/dist/es/lib/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/broadcast/dist/es/lib/index.mjs -------------------------------------------------------------------------------- /packages/broadcast/dist/es/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/broadcast/dist/es/types/index.d.ts -------------------------------------------------------------------------------- /packages/broadcast/dist/iife/broadcast.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/broadcast/dist/iife/broadcast.d.ts -------------------------------------------------------------------------------- /packages/broadcast/dist/iife/broadcast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/broadcast/dist/iife/broadcast.js -------------------------------------------------------------------------------- /packages/broadcast/dist/iife/broadcast.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/broadcast/dist/iife/broadcast.js.map -------------------------------------------------------------------------------- /packages/broadcast/dist/iife/broadcast.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/broadcast/dist/iife/broadcast.min.js -------------------------------------------------------------------------------- /packages/broadcast/dist/system/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/broadcast/dist/system/lib/index.js -------------------------------------------------------------------------------- /packages/broadcast/dist/system/lib/index.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/broadcast/dist/system/lib/index.min.js -------------------------------------------------------------------------------- /packages/broadcast/dist/system/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/broadcast/dist/system/types/index.d.ts -------------------------------------------------------------------------------- /packages/broadcast/dist/umd/broadcast.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/broadcast/dist/umd/broadcast.d.ts -------------------------------------------------------------------------------- /packages/broadcast/dist/umd/broadcast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/broadcast/dist/umd/broadcast.js -------------------------------------------------------------------------------- /packages/broadcast/dist/umd/broadcast.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/broadcast/dist/umd/broadcast.js.map -------------------------------------------------------------------------------- /packages/broadcast/dist/umd/broadcast.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/broadcast/dist/umd/broadcast.min.js -------------------------------------------------------------------------------- /packages/broadcast/egf.compile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/broadcast/egf.compile.js -------------------------------------------------------------------------------- /packages/broadcast/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/broadcast/package.json -------------------------------------------------------------------------------- /packages/broadcast/src/broadcast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/broadcast/src/broadcast.ts -------------------------------------------------------------------------------- /packages/broadcast/src/globalDefines.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/broadcast/src/globalDefines.ts -------------------------------------------------------------------------------- /packages/broadcast/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/broadcast/src/index.ts -------------------------------------------------------------------------------- /packages/broadcast/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/broadcast/tsconfig.json -------------------------------------------------------------------------------- /packages/c3d-comp-template/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/c3d-comp-template/CHANGELOG.md -------------------------------------------------------------------------------- /packages/c3d-comp-template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/c3d-comp-template/README.md -------------------------------------------------------------------------------- /packages/c3d-comp-template/__tests__/test.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/c3d-comp-template/__tests__/test.test.ts -------------------------------------------------------------------------------- /packages/c3d-comp-template/dist/cjs/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/c3d-comp-template/dist/cjs/lib/index.js -------------------------------------------------------------------------------- /packages/c3d-comp-template/dist/es/lib/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/c3d-comp-template/dist/es/lib/index.mjs -------------------------------------------------------------------------------- /packages/c3d-comp-template/egf.compile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/c3d-comp-template/egf.compile.js -------------------------------------------------------------------------------- /packages/c3d-comp-template/libs/cc.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/c3d-comp-template/libs/cc.d.ts -------------------------------------------------------------------------------- /packages/c3d-comp-template/libs/consts.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/c3d-comp-template/libs/consts.d.ts -------------------------------------------------------------------------------- /packages/c3d-comp-template/libs/globals.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/c3d-comp-template/libs/globals.d.ts -------------------------------------------------------------------------------- /packages/c3d-comp-template/libs/webGL.extras.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/c3d-comp-template/libs/webGL.extras.d.ts -------------------------------------------------------------------------------- /packages/c3d-comp-template/libs/webGL2.extras.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/c3d-comp-template/libs/webGL2.extras.d.ts -------------------------------------------------------------------------------- /packages/c3d-comp-template/libs/wx.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/c3d-comp-template/libs/wx.d.ts -------------------------------------------------------------------------------- /packages/c3d-comp-template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/c3d-comp-template/package.json -------------------------------------------------------------------------------- /packages/c3d-comp-template/src/TestComp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/c3d-comp-template/src/TestComp.ts -------------------------------------------------------------------------------- /packages/c3d-comp-template/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./TestComp" -------------------------------------------------------------------------------- /packages/c3d-comp-template/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/c3d-comp-template/tsconfig.json -------------------------------------------------------------------------------- /packages/cli/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/CHANGELOG.md -------------------------------------------------------------------------------- /packages/cli/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/LICENSE -------------------------------------------------------------------------------- /packages/cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/README.md -------------------------------------------------------------------------------- /packages/cli/__tests__/demo/iife/testModule.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/__tests__/demo/iife/testModule.d.ts -------------------------------------------------------------------------------- /packages/cli/__tests__/demo/iife/testModule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/__tests__/demo/iife/testModule.js -------------------------------------------------------------------------------- /packages/cli/__tests__/demo/test-iife-dts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/__tests__/demo/test-iife-dts.ts -------------------------------------------------------------------------------- /packages/cli/__tests__/egf.compile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/__tests__/egf.compile.js -------------------------------------------------------------------------------- /packages/cli/__tests__/gen-dts/dist/genDts.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/__tests__/gen-dts/dist/genDts.d.ts -------------------------------------------------------------------------------- /packages/cli/__tests__/gen-dts/dist/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/__tests__/gen-dts/dist/index.d.ts -------------------------------------------------------------------------------- /packages/cli/__tests__/gen-dts/egf.compile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/__tests__/gen-dts/egf.compile.js -------------------------------------------------------------------------------- /packages/cli/__tests__/gen-dts/src/classA.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/__tests__/gen-dts/src/classA.ts -------------------------------------------------------------------------------- /packages/cli/__tests__/gen-dts/src/classB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/__tests__/gen-dts/src/classB.ts -------------------------------------------------------------------------------- /packages/cli/__tests__/gen-dts/src/classC.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/__tests__/gen-dts/src/classC.ts -------------------------------------------------------------------------------- /packages/cli/__tests__/gen-dts/src/classbc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/__tests__/gen-dts/src/classbc.ts -------------------------------------------------------------------------------- /packages/cli/__tests__/gen-dts/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/__tests__/gen-dts/src/index.ts -------------------------------------------------------------------------------- /packages/cli/__tests__/gen-dts/src/refOtherPkg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/__tests__/gen-dts/src/refOtherPkg.ts -------------------------------------------------------------------------------- /packages/cli/__tests__/gen-dts/subproj/classA.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/__tests__/gen-dts/subproj/classA.ts -------------------------------------------------------------------------------- /packages/cli/__tests__/gen-dts/subproj/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/__tests__/gen-dts/subproj/index.ts -------------------------------------------------------------------------------- /packages/cli/__tests__/gen-dts/testOption.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/__tests__/gen-dts/testOption.js -------------------------------------------------------------------------------- /packages/cli/__tests__/gen-dts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/__tests__/gen-dts/tsconfig.json -------------------------------------------------------------------------------- /packages/cli/__tests__/mutientry/egf.compile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/__tests__/mutientry/egf.compile.js -------------------------------------------------------------------------------- /packages/cli/__tests__/mutientry/src/classA.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/__tests__/mutientry/src/classA.ts -------------------------------------------------------------------------------- /packages/cli/__tests__/mutientry/src/classB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/__tests__/mutientry/src/classB.ts -------------------------------------------------------------------------------- /packages/cli/__tests__/mutientry/src/classC.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/__tests__/mutientry/src/classC.ts -------------------------------------------------------------------------------- /packages/cli/__tests__/mutientry/src/classbc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/__tests__/mutientry/src/classbc.ts -------------------------------------------------------------------------------- /packages/cli/__tests__/mutientry/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/__tests__/mutientry/src/index.ts -------------------------------------------------------------------------------- /packages/cli/__tests__/mutientry/src2/classA.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/__tests__/mutientry/src2/classA.ts -------------------------------------------------------------------------------- /packages/cli/__tests__/mutientry/src2/classB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/__tests__/mutientry/src2/classB.ts -------------------------------------------------------------------------------- /packages/cli/__tests__/mutientry/src2/classD.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/__tests__/mutientry/src2/classD.ts -------------------------------------------------------------------------------- /packages/cli/__tests__/mutientry/src2/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/__tests__/mutientry/src2/index.ts -------------------------------------------------------------------------------- /packages/cli/__tests__/mutientry/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/__tests__/mutientry/tsconfig.json -------------------------------------------------------------------------------- /packages/cli/__tests__/single/egf.compile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/__tests__/single/egf.compile.js -------------------------------------------------------------------------------- /packages/cli/__tests__/single/src/classA.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/__tests__/single/src/classA.ts -------------------------------------------------------------------------------- /packages/cli/__tests__/single/src/classB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/__tests__/single/src/classB.ts -------------------------------------------------------------------------------- /packages/cli/__tests__/single/src/classC.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/__tests__/single/src/classC.ts -------------------------------------------------------------------------------- /packages/cli/__tests__/single/src/classbc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/__tests__/single/src/classbc.ts -------------------------------------------------------------------------------- /packages/cli/__tests__/single/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/__tests__/single/src/index.ts -------------------------------------------------------------------------------- /packages/cli/__tests__/single/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/__tests__/single/tsconfig.json -------------------------------------------------------------------------------- /packages/cli/__tests__/single2/egf.compile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/__tests__/single2/egf.compile.js -------------------------------------------------------------------------------- /packages/cli/__tests__/single2/src/classA.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/__tests__/single2/src/classA.ts -------------------------------------------------------------------------------- /packages/cli/__tests__/single2/src/classB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/__tests__/single2/src/classB.ts -------------------------------------------------------------------------------- /packages/cli/__tests__/single2/src/classC.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/__tests__/single2/src/classC.ts -------------------------------------------------------------------------------- /packages/cli/__tests__/single2/src/classbc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/__tests__/single2/src/classbc.ts -------------------------------------------------------------------------------- /packages/cli/__tests__/single2/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/__tests__/single2/src/index.ts -------------------------------------------------------------------------------- /packages/cli/__tests__/single2/testOption.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/__tests__/single2/testOption.js -------------------------------------------------------------------------------- /packages/cli/__tests__/single2/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/__tests__/single2/tsconfig.json -------------------------------------------------------------------------------- /packages/cli/__tests__/single3/egf.compile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/__tests__/single3/egf.compile.js -------------------------------------------------------------------------------- /packages/cli/__tests__/single3/src/classA.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/__tests__/single3/src/classA.ts -------------------------------------------------------------------------------- /packages/cli/__tests__/single3/src/classB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/__tests__/single3/src/classB.ts -------------------------------------------------------------------------------- /packages/cli/__tests__/single3/src/classC.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/__tests__/single3/src/classC.ts -------------------------------------------------------------------------------- /packages/cli/__tests__/single3/src/classbc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/__tests__/single3/src/classbc.ts -------------------------------------------------------------------------------- /packages/cli/__tests__/single3/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/__tests__/single3/src/index.ts -------------------------------------------------------------------------------- /packages/cli/__tests__/single3/testOption.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/__tests__/single3/testOption.js -------------------------------------------------------------------------------- /packages/cli/__tests__/single3/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/__tests__/single3/tsconfig.json -------------------------------------------------------------------------------- /packages/cli/__tests__/testOption.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/__tests__/testOption.js -------------------------------------------------------------------------------- /packages/cli/__tests__/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/__tests__/tsconfig.json -------------------------------------------------------------------------------- /packages/cli/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/cli.js -------------------------------------------------------------------------------- /packages/cli/egfCompileOption.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/egfCompileOption.d.ts -------------------------------------------------------------------------------- /packages/cli/libs/cti/EN_CLIOPTION.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/libs/cti/EN_CLIOPTION.d.ts -------------------------------------------------------------------------------- /packages/cli/libs/cti/EN_CLIOPTION.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/libs/cti/EN_CLIOPTION.js -------------------------------------------------------------------------------- /packages/cli/libs/cti/EN_CLIOPTION.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/libs/cti/EN_CLIOPTION.js.map -------------------------------------------------------------------------------- /packages/cli/libs/cti/TypeScritIndexWriter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/libs/cti/TypeScritIndexWriter.d.ts -------------------------------------------------------------------------------- /packages/cli/libs/cti/TypeScritIndexWriter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/libs/cti/TypeScritIndexWriter.js -------------------------------------------------------------------------------- /packages/cli/libs/cti/commands/CommandModule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/libs/cti/commands/CommandModule.js -------------------------------------------------------------------------------- /packages/cli/libs/cti/cti.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /packages/cli/libs/cti/cti.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/libs/cti/cti.js.map -------------------------------------------------------------------------------- /packages/cli/libs/cti/options/configure.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/libs/cti/options/configure.d.ts -------------------------------------------------------------------------------- /packages/cli/libs/cti/options/configure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/libs/cti/options/configure.js -------------------------------------------------------------------------------- /packages/cli/libs/cti/options/configure.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/libs/cti/options/configure.js.map -------------------------------------------------------------------------------- /packages/cli/libs/cti/options/options.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/libs/cti/options/options.d.ts -------------------------------------------------------------------------------- /packages/cli/libs/cti/options/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/libs/cti/options/options.js -------------------------------------------------------------------------------- /packages/cli/libs/cti/options/options.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/libs/cti/options/options.js.map -------------------------------------------------------------------------------- /packages/cli/libs/cti/tools/CTILogger.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/libs/cti/tools/CTILogger.d.ts -------------------------------------------------------------------------------- /packages/cli/libs/cti/tools/CTILogger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/libs/cti/tools/CTILogger.js -------------------------------------------------------------------------------- /packages/cli/libs/cti/tools/CTILogger.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/libs/cti/tools/CTILogger.js.map -------------------------------------------------------------------------------- /packages/cli/libs/cti/tools/CTIUtility.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/libs/cti/tools/CTIUtility.d.ts -------------------------------------------------------------------------------- /packages/cli/libs/cti/tools/CTIUtility.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/libs/cti/tools/CTIUtility.js -------------------------------------------------------------------------------- /packages/cli/libs/cti/tools/CTIUtility.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/libs/cti/tools/CTIUtility.js.map -------------------------------------------------------------------------------- /packages/cli/libs/cti/tools/exportStatement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/libs/cti/tools/exportStatement.js -------------------------------------------------------------------------------- /packages/cli/libs/genDts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/libs/genDts.js -------------------------------------------------------------------------------- /packages/cli/libs/rollupdo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/libs/rollupdo.js -------------------------------------------------------------------------------- /packages/cli/libs/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/libs/utils.js -------------------------------------------------------------------------------- /packages/cli/package-template/README.md: -------------------------------------------------------------------------------- 1 | # `xxx` 2 | 3 | 4 | -------------------------------------------------------------------------------- /packages/cli/package-template/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/package-template/demo/index.html -------------------------------------------------------------------------------- /packages/cli/package-template/egf.compile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/package-template/egf.compile.js -------------------------------------------------------------------------------- /packages/cli/package-template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/package-template/package.json -------------------------------------------------------------------------------- /packages/cli/package-template/src/classA.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/package-template/src/classA.ts -------------------------------------------------------------------------------- /packages/cli/package-template/src/classB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/package-template/src/classB.ts -------------------------------------------------------------------------------- /packages/cli/package-template/src/classC.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/package-template/src/classC.ts -------------------------------------------------------------------------------- /packages/cli/package-template/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/package-template/src/index.ts -------------------------------------------------------------------------------- /packages/cli/package-template/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/package-template/tsconfig.json -------------------------------------------------------------------------------- /packages/cli/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/package.json -------------------------------------------------------------------------------- /packages/cli/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/cli/tsconfig.json -------------------------------------------------------------------------------- /packages/core/.eslintignore: -------------------------------------------------------------------------------- 1 | dist 2 | __tests__ -------------------------------------------------------------------------------- /packages/core/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/core/.eslintrc.json -------------------------------------------------------------------------------- /packages/core/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/core/CHANGELOG.md -------------------------------------------------------------------------------- /packages/core/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/core/LICENSE -------------------------------------------------------------------------------- /packages/core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/core/README.md -------------------------------------------------------------------------------- /packages/core/__tests__/app.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/core/__tests__/app.test.ts -------------------------------------------------------------------------------- /packages/core/__tests__/test-bootloaders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/core/__tests__/test-bootloaders.ts -------------------------------------------------------------------------------- /packages/core/dist/cjs/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/core/dist/cjs/lib/index.js -------------------------------------------------------------------------------- /packages/core/dist/cjs/lib/index.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/core/dist/cjs/lib/index.min.js -------------------------------------------------------------------------------- /packages/core/dist/cjs/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/core/dist/cjs/types/index.d.ts -------------------------------------------------------------------------------- /packages/core/dist/es/lib/index.min.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/core/dist/es/lib/index.min.mjs -------------------------------------------------------------------------------- /packages/core/dist/es/lib/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/core/dist/es/lib/index.mjs -------------------------------------------------------------------------------- /packages/core/dist/es/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/core/dist/es/types/index.d.ts -------------------------------------------------------------------------------- /packages/core/dist/iife/egfCore.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/core/dist/iife/egfCore.d.ts -------------------------------------------------------------------------------- /packages/core/dist/iife/egfCore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/core/dist/iife/egfCore.js -------------------------------------------------------------------------------- /packages/core/dist/iife/egfCore.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/core/dist/iife/egfCore.js.map -------------------------------------------------------------------------------- /packages/core/dist/iife/egfCore.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/core/dist/iife/egfCore.min.js -------------------------------------------------------------------------------- /packages/core/dist/system/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/core/dist/system/lib/index.js -------------------------------------------------------------------------------- /packages/core/dist/system/lib/index.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/core/dist/system/lib/index.min.js -------------------------------------------------------------------------------- /packages/core/dist/system/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/core/dist/system/types/index.d.ts -------------------------------------------------------------------------------- /packages/core/dist/umd/egfCore.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/core/dist/umd/egfCore.d.ts -------------------------------------------------------------------------------- /packages/core/dist/umd/egfCore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/core/dist/umd/egfCore.js -------------------------------------------------------------------------------- /packages/core/dist/umd/egfCore.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/core/dist/umd/egfCore.js.map -------------------------------------------------------------------------------- /packages/core/dist/umd/egfCore.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/core/dist/umd/egfCore.min.js -------------------------------------------------------------------------------- /packages/core/egf.compile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/core/egf.compile.js -------------------------------------------------------------------------------- /packages/core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/core/package.json -------------------------------------------------------------------------------- /packages/core/src/egf-app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/core/src/egf-app.ts -------------------------------------------------------------------------------- /packages/core/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/core/src/index.ts -------------------------------------------------------------------------------- /packages/core/src/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/core/src/interfaces.ts -------------------------------------------------------------------------------- /packages/core/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/core/tsconfig.json -------------------------------------------------------------------------------- /packages/display-ctrl/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/display-ctrl/CHANGELOG.md -------------------------------------------------------------------------------- /packages/display-ctrl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/display-ctrl/LICENSE -------------------------------------------------------------------------------- /packages/display-ctrl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/display-ctrl/README.md -------------------------------------------------------------------------------- /packages/display-ctrl/__tests__/base-dp-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/display-ctrl/__tests__/base-dp-ctrl.ts -------------------------------------------------------------------------------- /packages/display-ctrl/__tests__/dpc-mgr.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/display-ctrl/__tests__/dpc-mgr.test.ts -------------------------------------------------------------------------------- /packages/display-ctrl/dist/cjs/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/display-ctrl/dist/cjs/lib/index.js -------------------------------------------------------------------------------- /packages/display-ctrl/dist/cjs/lib/index.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/display-ctrl/dist/cjs/lib/index.min.js -------------------------------------------------------------------------------- /packages/display-ctrl/dist/cjs/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/display-ctrl/dist/cjs/types/index.d.ts -------------------------------------------------------------------------------- /packages/display-ctrl/dist/es/lib/index.min.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/display-ctrl/dist/es/lib/index.min.mjs -------------------------------------------------------------------------------- /packages/display-ctrl/dist/es/lib/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/display-ctrl/dist/es/lib/index.mjs -------------------------------------------------------------------------------- /packages/display-ctrl/dist/es/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/display-ctrl/dist/es/types/index.d.ts -------------------------------------------------------------------------------- /packages/display-ctrl/dist/iife/displayCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/display-ctrl/dist/iife/displayCtrl.js -------------------------------------------------------------------------------- /packages/display-ctrl/dist/system/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/display-ctrl/dist/system/lib/index.js -------------------------------------------------------------------------------- /packages/display-ctrl/dist/umd/displayCtrl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/display-ctrl/dist/umd/displayCtrl.d.ts -------------------------------------------------------------------------------- /packages/display-ctrl/dist/umd/displayCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/display-ctrl/dist/umd/displayCtrl.js -------------------------------------------------------------------------------- /packages/display-ctrl/egf.compile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/display-ctrl/egf.compile.js -------------------------------------------------------------------------------- /packages/display-ctrl/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/display-ctrl/package.json -------------------------------------------------------------------------------- /packages/display-ctrl/src/dp-ctrl-interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/display-ctrl/src/dp-ctrl-interfaces.ts -------------------------------------------------------------------------------- /packages/display-ctrl/src/dp-ctrl-mgr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/display-ctrl/src/dp-ctrl-mgr.ts -------------------------------------------------------------------------------- /packages/display-ctrl/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/display-ctrl/src/index.ts -------------------------------------------------------------------------------- /packages/display-ctrl/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/display-ctrl/tsconfig.json -------------------------------------------------------------------------------- /packages/dpctrl-c3d/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-c3d/CHANGELOG.md -------------------------------------------------------------------------------- /packages/dpctrl-c3d/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-c3d/LICENSE -------------------------------------------------------------------------------- /packages/dpctrl-c3d/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-c3d/README.md -------------------------------------------------------------------------------- /packages/dpctrl-c3d/__tests__/test.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-c3d/__tests__/test.test.ts -------------------------------------------------------------------------------- /packages/dpctrl-c3d/dist/cjs/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-c3d/dist/cjs/lib/index.js -------------------------------------------------------------------------------- /packages/dpctrl-c3d/dist/cjs/lib/index.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-c3d/dist/cjs/lib/index.min.js -------------------------------------------------------------------------------- /packages/dpctrl-c3d/dist/cjs/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-c3d/dist/cjs/types/index.d.ts -------------------------------------------------------------------------------- /packages/dpctrl-c3d/dist/es/lib/index.min.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-c3d/dist/es/lib/index.min.mjs -------------------------------------------------------------------------------- /packages/dpctrl-c3d/dist/es/lib/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-c3d/dist/es/lib/index.mjs -------------------------------------------------------------------------------- /packages/dpctrl-c3d/dist/es/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-c3d/dist/es/types/index.d.ts -------------------------------------------------------------------------------- /packages/dpctrl-c3d/dist/system/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-c3d/dist/system/lib/index.js -------------------------------------------------------------------------------- /packages/dpctrl-c3d/egf.compile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-c3d/egf.compile.js -------------------------------------------------------------------------------- /packages/dpctrl-c3d/libs/cc.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-c3d/libs/cc.d.ts -------------------------------------------------------------------------------- /packages/dpctrl-c3d/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-c3d/package.json -------------------------------------------------------------------------------- /packages/dpctrl-c3d/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-c3d/src/index.ts -------------------------------------------------------------------------------- /packages/dpctrl-c3d/src/layer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-c3d/src/layer.ts -------------------------------------------------------------------------------- /packages/dpctrl-c3d/src/node-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-c3d/src/node-ctrl.ts -------------------------------------------------------------------------------- /packages/dpctrl-c3d/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-c3d/tsconfig.json -------------------------------------------------------------------------------- /packages/dpctrl-ccc/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-ccc/CHANGELOG.md -------------------------------------------------------------------------------- /packages/dpctrl-ccc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-ccc/LICENSE -------------------------------------------------------------------------------- /packages/dpctrl-ccc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-ccc/README.md -------------------------------------------------------------------------------- /packages/dpctrl-ccc/__tests__/test.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-ccc/__tests__/test.test.ts -------------------------------------------------------------------------------- /packages/dpctrl-ccc/dist/cjs/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-ccc/dist/cjs/lib/index.js -------------------------------------------------------------------------------- /packages/dpctrl-ccc/dist/cjs/lib/index.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-ccc/dist/cjs/lib/index.min.js -------------------------------------------------------------------------------- /packages/dpctrl-ccc/dist/cjs/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-ccc/dist/cjs/types/index.d.ts -------------------------------------------------------------------------------- /packages/dpctrl-ccc/dist/es/lib/index.min.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-ccc/dist/es/lib/index.min.mjs -------------------------------------------------------------------------------- /packages/dpctrl-ccc/dist/es/lib/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-ccc/dist/es/lib/index.mjs -------------------------------------------------------------------------------- /packages/dpctrl-ccc/dist/es/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-ccc/dist/es/types/index.d.ts -------------------------------------------------------------------------------- /packages/dpctrl-ccc/dist/iife/dpctrlCcc.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-ccc/dist/iife/dpctrlCcc.d.ts -------------------------------------------------------------------------------- /packages/dpctrl-ccc/dist/iife/dpctrlCcc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-ccc/dist/iife/dpctrlCcc.js -------------------------------------------------------------------------------- /packages/dpctrl-ccc/dist/iife/dpctrlCcc.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-ccc/dist/iife/dpctrlCcc.js.map -------------------------------------------------------------------------------- /packages/dpctrl-ccc/dist/iife/dpctrlCcc.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-ccc/dist/iife/dpctrlCcc.min.js -------------------------------------------------------------------------------- /packages/dpctrl-ccc/dist/umd/dpctrlCcc.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-ccc/dist/umd/dpctrlCcc.d.ts -------------------------------------------------------------------------------- /packages/dpctrl-ccc/dist/umd/dpctrlCcc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-ccc/dist/umd/dpctrlCcc.js -------------------------------------------------------------------------------- /packages/dpctrl-ccc/dist/umd/dpctrlCcc.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-ccc/dist/umd/dpctrlCcc.js.map -------------------------------------------------------------------------------- /packages/dpctrl-ccc/dist/umd/dpctrlCcc.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-ccc/dist/umd/dpctrlCcc.min.js -------------------------------------------------------------------------------- /packages/dpctrl-ccc/egf.compile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-ccc/egf.compile.js -------------------------------------------------------------------------------- /packages/dpctrl-ccc/libs/creator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-ccc/libs/creator.d.ts -------------------------------------------------------------------------------- /packages/dpctrl-ccc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-ccc/package.json -------------------------------------------------------------------------------- /packages/dpctrl-ccc/src/Layer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-ccc/src/Layer.ts -------------------------------------------------------------------------------- /packages/dpctrl-ccc/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-ccc/src/index.ts -------------------------------------------------------------------------------- /packages/dpctrl-ccc/src/layer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-ccc/src/layer.ts -------------------------------------------------------------------------------- /packages/dpctrl-ccc/src/node-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-ccc/src/node-ctrl.ts -------------------------------------------------------------------------------- /packages/dpctrl-ccc/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-ccc/tsconfig.json -------------------------------------------------------------------------------- /packages/dpctrl-fgui/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-fgui/CHANGELOG.md -------------------------------------------------------------------------------- /packages/dpctrl-fgui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-fgui/README.md -------------------------------------------------------------------------------- /packages/dpctrl-fgui/dist/cjs/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-fgui/dist/cjs/lib/index.js -------------------------------------------------------------------------------- /packages/dpctrl-fgui/dist/cjs/lib/index.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-fgui/dist/cjs/lib/index.min.js -------------------------------------------------------------------------------- /packages/dpctrl-fgui/dist/cjs/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-fgui/dist/cjs/types/index.d.ts -------------------------------------------------------------------------------- /packages/dpctrl-fgui/dist/es/lib/index.min.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-fgui/dist/es/lib/index.min.mjs -------------------------------------------------------------------------------- /packages/dpctrl-fgui/dist/es/lib/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-fgui/dist/es/lib/index.mjs -------------------------------------------------------------------------------- /packages/dpctrl-fgui/dist/es/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-fgui/dist/es/types/index.d.ts -------------------------------------------------------------------------------- /packages/dpctrl-fgui/dist/iife/dpctrlFgui.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-fgui/dist/iife/dpctrlFgui.d.ts -------------------------------------------------------------------------------- /packages/dpctrl-fgui/dist/iife/dpctrlFgui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-fgui/dist/iife/dpctrlFgui.js -------------------------------------------------------------------------------- /packages/dpctrl-fgui/dist/system/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-fgui/dist/system/lib/index.js -------------------------------------------------------------------------------- /packages/dpctrl-fgui/dist/umd/dpctrlFgui.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-fgui/dist/umd/dpctrlFgui.d.ts -------------------------------------------------------------------------------- /packages/dpctrl-fgui/dist/umd/dpctrlFgui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-fgui/dist/umd/dpctrlFgui.js -------------------------------------------------------------------------------- /packages/dpctrl-fgui/dist/umd/dpctrlFgui.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-fgui/dist/umd/dpctrlFgui.js.map -------------------------------------------------------------------------------- /packages/dpctrl-fgui/dist/umd/dpctrlFgui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-fgui/dist/umd/dpctrlFgui.min.js -------------------------------------------------------------------------------- /packages/dpctrl-fgui/egf.compile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-fgui/egf.compile.js -------------------------------------------------------------------------------- /packages/dpctrl-fgui/libs/fairygui.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-fgui/libs/fairygui.d.ts -------------------------------------------------------------------------------- /packages/dpctrl-fgui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-fgui/package.json -------------------------------------------------------------------------------- /packages/dpctrl-fgui/src/BinderInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-fgui/src/BinderInterfaces.ts -------------------------------------------------------------------------------- /packages/dpctrl-fgui/src/BinderTool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-fgui/src/BinderTool.ts -------------------------------------------------------------------------------- /packages/dpctrl-fgui/src/FBinderTool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-fgui/src/FBinderTool.ts -------------------------------------------------------------------------------- /packages/dpctrl-fgui/src/fgui-dpctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-fgui/src/fgui-dpctrl.ts -------------------------------------------------------------------------------- /packages/dpctrl-fgui/src/fgui-layer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-fgui/src/fgui-layer.ts -------------------------------------------------------------------------------- /packages/dpctrl-fgui/src/fix-some-fgui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-fgui/src/fix-some-fgui.ts -------------------------------------------------------------------------------- /packages/dpctrl-fgui/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-fgui/src/index.ts -------------------------------------------------------------------------------- /packages/dpctrl-fgui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-fgui/tsconfig.json -------------------------------------------------------------------------------- /packages/dpctrl-fguicc/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-fguicc/CHANGELOG.md -------------------------------------------------------------------------------- /packages/dpctrl-fguicc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-fguicc/README.md -------------------------------------------------------------------------------- /packages/dpctrl-fguicc/dist/cjs/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-fguicc/dist/cjs/lib/index.js -------------------------------------------------------------------------------- /packages/dpctrl-fguicc/dist/es/lib/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-fguicc/dist/es/lib/index.mjs -------------------------------------------------------------------------------- /packages/dpctrl-fguicc/dist/es/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-fguicc/dist/es/types/index.d.ts -------------------------------------------------------------------------------- /packages/dpctrl-fguicc/egf.compile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-fguicc/egf.compile.js -------------------------------------------------------------------------------- /packages/dpctrl-fguicc/libs/cc.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-fguicc/libs/cc.d.ts -------------------------------------------------------------------------------- /packages/dpctrl-fguicc/libs/cc.env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-fguicc/libs/cc.env.d.ts -------------------------------------------------------------------------------- /packages/dpctrl-fguicc/libs/jsb.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-fguicc/libs/jsb.d.ts -------------------------------------------------------------------------------- /packages/dpctrl-fguicc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-fguicc/package.json -------------------------------------------------------------------------------- /packages/dpctrl-fguicc/src/BinderInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-fguicc/src/BinderInterfaces.ts -------------------------------------------------------------------------------- /packages/dpctrl-fguicc/src/BinderTool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-fguicc/src/BinderTool.ts -------------------------------------------------------------------------------- /packages/dpctrl-fguicc/src/FBinderTool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-fguicc/src/FBinderTool.ts -------------------------------------------------------------------------------- /packages/dpctrl-fguicc/src/fgui-dpctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-fguicc/src/fgui-dpctrl.ts -------------------------------------------------------------------------------- /packages/dpctrl-fguicc/src/fgui-layer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-fguicc/src/fgui-layer.ts -------------------------------------------------------------------------------- /packages/dpctrl-fguicc/src/fix-some-fgui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-fguicc/src/fix-some-fgui.ts -------------------------------------------------------------------------------- /packages/dpctrl-fguicc/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-fguicc/src/index.ts -------------------------------------------------------------------------------- /packages/dpctrl-fguicc/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/dpctrl-fguicc/tsconfig.json -------------------------------------------------------------------------------- /packages/egf-protobuf-cli/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/egf-protobuf-cli/CHANGELOG.md -------------------------------------------------------------------------------- /packages/egf-protobuf-cli/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/egf-protobuf-cli/LICENSE -------------------------------------------------------------------------------- /packages/egf-protobuf-cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/egf-protobuf-cli/README.md -------------------------------------------------------------------------------- /packages/egf-protobuf-cli/dist/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/egf-protobuf-cli/dist/cli.js -------------------------------------------------------------------------------- /packages/egf-protobuf-cli/dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/egf-protobuf-cli/dist/index.js -------------------------------------------------------------------------------- /packages/egf-protobuf-cli/dist/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/egf-protobuf-cli/dist/index.js.map -------------------------------------------------------------------------------- /packages/egf-protobuf-cli/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/egf-protobuf-cli/package.json -------------------------------------------------------------------------------- /packages/egf-protobuf-cli/src/epbconfig.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/egf-protobuf-cli/src/epbconfig.d.ts -------------------------------------------------------------------------------- /packages/egf-protobuf-cli/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/egf-protobuf-cli/src/index.ts -------------------------------------------------------------------------------- /packages/egf-protobuf-cli/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/egf-protobuf-cli/tsconfig.json -------------------------------------------------------------------------------- /packages/enet-pbws/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet-pbws/CHANGELOG.md -------------------------------------------------------------------------------- /packages/enet-pbws/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet-pbws/LICENSE -------------------------------------------------------------------------------- /packages/enet-pbws/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet-pbws/README.md -------------------------------------------------------------------------------- /packages/enet-pbws/__tests__/pb-net.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet-pbws/__tests__/pb-net.test.ts -------------------------------------------------------------------------------- /packages/enet-pbws/dist/cjs/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet-pbws/dist/cjs/lib/index.js -------------------------------------------------------------------------------- /packages/enet-pbws/dist/cjs/lib/index.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet-pbws/dist/cjs/lib/index.min.js -------------------------------------------------------------------------------- /packages/enet-pbws/dist/cjs/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet-pbws/dist/cjs/types/index.d.ts -------------------------------------------------------------------------------- /packages/enet-pbws/dist/es/lib/index.min.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet-pbws/dist/es/lib/index.min.mjs -------------------------------------------------------------------------------- /packages/enet-pbws/dist/es/lib/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet-pbws/dist/es/lib/index.mjs -------------------------------------------------------------------------------- /packages/enet-pbws/dist/es/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet-pbws/dist/es/types/index.d.ts -------------------------------------------------------------------------------- /packages/enet-pbws/dist/iife/enetPbws.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet-pbws/dist/iife/enetPbws.d.ts -------------------------------------------------------------------------------- /packages/enet-pbws/dist/iife/enetPbws.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet-pbws/dist/iife/enetPbws.js -------------------------------------------------------------------------------- /packages/enet-pbws/dist/iife/enetPbws.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet-pbws/dist/iife/enetPbws.js.map -------------------------------------------------------------------------------- /packages/enet-pbws/dist/iife/enetPbws.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet-pbws/dist/iife/enetPbws.min.js -------------------------------------------------------------------------------- /packages/enet-pbws/dist/system/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet-pbws/dist/system/lib/index.js -------------------------------------------------------------------------------- /packages/enet-pbws/dist/system/lib/index.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet-pbws/dist/system/lib/index.min.js -------------------------------------------------------------------------------- /packages/enet-pbws/dist/system/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet-pbws/dist/system/types/index.d.ts -------------------------------------------------------------------------------- /packages/enet-pbws/dist/umd/enetPbws.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet-pbws/dist/umd/enetPbws.d.ts -------------------------------------------------------------------------------- /packages/enet-pbws/dist/umd/enetPbws.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet-pbws/dist/umd/enetPbws.js -------------------------------------------------------------------------------- /packages/enet-pbws/dist/umd/enetPbws.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet-pbws/dist/umd/enetPbws.js.map -------------------------------------------------------------------------------- /packages/enet-pbws/dist/umd/enetPbws.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet-pbws/dist/umd/enetPbws.min.js -------------------------------------------------------------------------------- /packages/enet-pbws/egf.compile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet-pbws/egf.compile.js -------------------------------------------------------------------------------- /packages/enet-pbws/libs/protobuf-library.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet-pbws/libs/protobuf-library.d.ts -------------------------------------------------------------------------------- /packages/enet-pbws/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet-pbws/package.json -------------------------------------------------------------------------------- /packages/enet-pbws/protobuf/epbconfig.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet-pbws/protobuf/epbconfig.d.ts -------------------------------------------------------------------------------- /packages/enet-pbws/protobuf/epbconfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet-pbws/protobuf/epbconfig.js -------------------------------------------------------------------------------- /packages/enet-pbws/protobuf/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet-pbws/protobuf/tsconfig.json -------------------------------------------------------------------------------- /packages/enet-pbws/src/byte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet-pbws/src/byte.ts -------------------------------------------------------------------------------- /packages/enet-pbws/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet-pbws/src/index.ts -------------------------------------------------------------------------------- /packages/enet-pbws/src/pb-proto-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet-pbws/src/pb-proto-handler.ts -------------------------------------------------------------------------------- /packages/enet-pbws/src/pkg-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet-pbws/src/pkg-type.ts -------------------------------------------------------------------------------- /packages/enet-pbws/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet-pbws/tsconfig.json -------------------------------------------------------------------------------- /packages/enet-pinus-pb/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet-pinus-pb/CHANGELOG.md -------------------------------------------------------------------------------- /packages/enet-pinus-pb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet-pinus-pb/LICENSE -------------------------------------------------------------------------------- /packages/enet-pinus-pb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet-pinus-pb/README.md -------------------------------------------------------------------------------- /packages/enet-pinus-pb/dist/cjs/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet-pinus-pb/dist/cjs/lib/index.js -------------------------------------------------------------------------------- /packages/enet-pinus-pb/dist/es/lib/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet-pinus-pb/dist/es/lib/index.mjs -------------------------------------------------------------------------------- /packages/enet-pinus-pb/dist/es/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet-pinus-pb/dist/es/types/index.d.ts -------------------------------------------------------------------------------- /packages/enet-pinus-pb/dist/iife/enetPinusPb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet-pinus-pb/dist/iife/enetPinusPb.js -------------------------------------------------------------------------------- /packages/enet-pinus-pb/dist/system/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet-pinus-pb/dist/system/lib/index.js -------------------------------------------------------------------------------- /packages/enet-pinus-pb/dist/umd/enetPinusPb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet-pinus-pb/dist/umd/enetPinusPb.js -------------------------------------------------------------------------------- /packages/enet-pinus-pb/egf.compile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet-pinus-pb/egf.compile.js -------------------------------------------------------------------------------- /packages/enet-pinus-pb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet-pinus-pb/package.json -------------------------------------------------------------------------------- /packages/enet-pinus-pb/src/ByteArray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet-pinus-pb/src/ByteArray.ts -------------------------------------------------------------------------------- /packages/enet-pinus-pb/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet-pinus-pb/src/index.ts -------------------------------------------------------------------------------- /packages/enet-pinus-pb/src/message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet-pinus-pb/src/message.ts -------------------------------------------------------------------------------- /packages/enet-pinus-pb/src/package.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet-pinus-pb/src/package.ts -------------------------------------------------------------------------------- /packages/enet-pinus-pb/src/pkg-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet-pinus-pb/src/pkg-type.ts -------------------------------------------------------------------------------- /packages/enet-pinus-pb/src/protobuf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet-pinus-pb/src/protobuf.ts -------------------------------------------------------------------------------- /packages/enet-pinus-pb/src/protocol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet-pinus-pb/src/protocol.ts -------------------------------------------------------------------------------- /packages/enet-pinus-pb/src/route-dic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet-pinus-pb/src/route-dic.ts -------------------------------------------------------------------------------- /packages/enet-pinus-pb/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet-pinus-pb/tsconfig.json -------------------------------------------------------------------------------- /packages/enet/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet/CHANGELOG.md -------------------------------------------------------------------------------- /packages/enet/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet/LICENSE -------------------------------------------------------------------------------- /packages/enet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet/README.md -------------------------------------------------------------------------------- /packages/enet/__tests__/net-node.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet/__tests__/net-node.test.ts -------------------------------------------------------------------------------- /packages/enet/__tests__/websocket.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet/__tests__/websocket.test.ts -------------------------------------------------------------------------------- /packages/enet/dist/cjs/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet/dist/cjs/lib/index.js -------------------------------------------------------------------------------- /packages/enet/dist/cjs/lib/index.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet/dist/cjs/lib/index.min.js -------------------------------------------------------------------------------- /packages/enet/dist/cjs/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet/dist/cjs/types/index.d.ts -------------------------------------------------------------------------------- /packages/enet/dist/es/lib/index.min.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet/dist/es/lib/index.min.mjs -------------------------------------------------------------------------------- /packages/enet/dist/es/lib/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet/dist/es/lib/index.mjs -------------------------------------------------------------------------------- /packages/enet/dist/es/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet/dist/es/types/index.d.ts -------------------------------------------------------------------------------- /packages/enet/dist/iife/enet.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet/dist/iife/enet.d.ts -------------------------------------------------------------------------------- /packages/enet/dist/iife/enet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet/dist/iife/enet.js -------------------------------------------------------------------------------- /packages/enet/dist/iife/enet.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet/dist/iife/enet.js.map -------------------------------------------------------------------------------- /packages/enet/dist/iife/enet.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet/dist/iife/enet.min.js -------------------------------------------------------------------------------- /packages/enet/dist/system/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet/dist/system/lib/index.js -------------------------------------------------------------------------------- /packages/enet/dist/system/lib/index.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet/dist/system/lib/index.min.js -------------------------------------------------------------------------------- /packages/enet/dist/system/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet/dist/system/types/index.d.ts -------------------------------------------------------------------------------- /packages/enet/dist/umd/enet.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet/dist/umd/enet.d.ts -------------------------------------------------------------------------------- /packages/enet/dist/umd/enet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet/dist/umd/enet.js -------------------------------------------------------------------------------- /packages/enet/dist/umd/enet.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet/dist/umd/enet.js.map -------------------------------------------------------------------------------- /packages/enet/dist/umd/enet.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet/dist/umd/enet.min.js -------------------------------------------------------------------------------- /packages/enet/egf.compile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet/egf.compile.js -------------------------------------------------------------------------------- /packages/enet/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet/package.json -------------------------------------------------------------------------------- /packages/enet/src/default-net-event-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet/src/default-net-event-handler.ts -------------------------------------------------------------------------------- /packages/enet/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet/src/index.ts -------------------------------------------------------------------------------- /packages/enet/src/net-interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet/src/net-interfaces.ts -------------------------------------------------------------------------------- /packages/enet/src/net-node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet/src/net-node.ts -------------------------------------------------------------------------------- /packages/enet/src/pkg-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet/src/pkg-type.ts -------------------------------------------------------------------------------- /packages/enet/src/socketStateType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet/src/socketStateType.ts -------------------------------------------------------------------------------- /packages/enet/src/wsocket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet/src/wsocket.ts -------------------------------------------------------------------------------- /packages/enet/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/enet/tsconfig.json -------------------------------------------------------------------------------- /packages/layer/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/layer/CHANGELOG.md -------------------------------------------------------------------------------- /packages/layer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/layer/LICENSE -------------------------------------------------------------------------------- /packages/layer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/layer/README.md -------------------------------------------------------------------------------- /packages/layer/__tests__/layer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/layer/__tests__/layer.test.ts -------------------------------------------------------------------------------- /packages/layer/__tests__/test-layer-lmp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/layer/__tests__/test-layer-lmp.ts -------------------------------------------------------------------------------- /packages/layer/__tests__/test-layer-mgr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/layer/__tests__/test-layer-mgr.ts -------------------------------------------------------------------------------- /packages/layer/__tests__/test-layer-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/layer/__tests__/test-layer-type.ts -------------------------------------------------------------------------------- /packages/layer/__tests__/test-render-node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/layer/__tests__/test-render-node.ts -------------------------------------------------------------------------------- /packages/layer/__tests__/test-root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/layer/__tests__/test-root.ts -------------------------------------------------------------------------------- /packages/layer/dist/cjs/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/layer/dist/cjs/lib/index.js -------------------------------------------------------------------------------- /packages/layer/dist/cjs/lib/index.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/layer/dist/cjs/lib/index.min.js -------------------------------------------------------------------------------- /packages/layer/dist/cjs/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/layer/dist/cjs/types/index.d.ts -------------------------------------------------------------------------------- /packages/layer/dist/es/lib/index.min.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/layer/dist/es/lib/index.min.mjs -------------------------------------------------------------------------------- /packages/layer/dist/es/lib/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/layer/dist/es/lib/index.mjs -------------------------------------------------------------------------------- /packages/layer/dist/es/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/layer/dist/es/types/index.d.ts -------------------------------------------------------------------------------- /packages/layer/dist/iife/layer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/layer/dist/iife/layer.d.ts -------------------------------------------------------------------------------- /packages/layer/dist/iife/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/layer/dist/iife/layer.js -------------------------------------------------------------------------------- /packages/layer/dist/iife/layer.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/layer/dist/iife/layer.js.map -------------------------------------------------------------------------------- /packages/layer/dist/iife/layer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/layer/dist/iife/layer.min.js -------------------------------------------------------------------------------- /packages/layer/dist/system/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/layer/dist/system/lib/index.js -------------------------------------------------------------------------------- /packages/layer/dist/system/lib/index.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/layer/dist/system/lib/index.min.js -------------------------------------------------------------------------------- /packages/layer/dist/system/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/layer/dist/system/types/index.d.ts -------------------------------------------------------------------------------- /packages/layer/dist/umd/layer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/layer/dist/umd/layer.d.ts -------------------------------------------------------------------------------- /packages/layer/dist/umd/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/layer/dist/umd/layer.js -------------------------------------------------------------------------------- /packages/layer/dist/umd/layer.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/layer/dist/umd/layer.js.map -------------------------------------------------------------------------------- /packages/layer/dist/umd/layer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/layer/dist/umd/layer.min.js -------------------------------------------------------------------------------- /packages/layer/egf.compile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/layer/egf.compile.js -------------------------------------------------------------------------------- /packages/layer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/layer/package.json -------------------------------------------------------------------------------- /packages/layer/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/layer/src/index.ts -------------------------------------------------------------------------------- /packages/layer/src/layer-interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/layer/src/layer-interfaces.ts -------------------------------------------------------------------------------- /packages/layer/src/layer-mgr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/layer/src/layer-mgr.ts -------------------------------------------------------------------------------- /packages/layer/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/layer/tsconfig.json -------------------------------------------------------------------------------- /packages/obj-pool/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/obj-pool/CHANGELOG.md -------------------------------------------------------------------------------- /packages/obj-pool/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/obj-pool/LICENSE -------------------------------------------------------------------------------- /packages/obj-pool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/obj-pool/README.md -------------------------------------------------------------------------------- /packages/obj-pool/__tests__/obj-pool.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/obj-pool/__tests__/obj-pool.test.ts -------------------------------------------------------------------------------- /packages/obj-pool/dist/cjs/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/obj-pool/dist/cjs/lib/index.js -------------------------------------------------------------------------------- /packages/obj-pool/dist/cjs/lib/index.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/obj-pool/dist/cjs/lib/index.min.js -------------------------------------------------------------------------------- /packages/obj-pool/dist/cjs/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/obj-pool/dist/cjs/types/index.d.ts -------------------------------------------------------------------------------- /packages/obj-pool/dist/es/lib/index.min.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/obj-pool/dist/es/lib/index.min.mjs -------------------------------------------------------------------------------- /packages/obj-pool/dist/es/lib/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/obj-pool/dist/es/lib/index.mjs -------------------------------------------------------------------------------- /packages/obj-pool/dist/es/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/obj-pool/dist/es/types/index.d.ts -------------------------------------------------------------------------------- /packages/obj-pool/dist/iife/objPool.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/obj-pool/dist/iife/objPool.d.ts -------------------------------------------------------------------------------- /packages/obj-pool/dist/iife/objPool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/obj-pool/dist/iife/objPool.js -------------------------------------------------------------------------------- /packages/obj-pool/dist/iife/objPool.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/obj-pool/dist/iife/objPool.js.map -------------------------------------------------------------------------------- /packages/obj-pool/dist/iife/objPool.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/obj-pool/dist/iife/objPool.min.js -------------------------------------------------------------------------------- /packages/obj-pool/dist/system/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/obj-pool/dist/system/lib/index.js -------------------------------------------------------------------------------- /packages/obj-pool/dist/system/lib/index.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/obj-pool/dist/system/lib/index.min.js -------------------------------------------------------------------------------- /packages/obj-pool/dist/system/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/obj-pool/dist/system/types/index.d.ts -------------------------------------------------------------------------------- /packages/obj-pool/dist/umd/objPool.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/obj-pool/dist/umd/objPool.d.ts -------------------------------------------------------------------------------- /packages/obj-pool/dist/umd/objPool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/obj-pool/dist/umd/objPool.js -------------------------------------------------------------------------------- /packages/obj-pool/dist/umd/objPool.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/obj-pool/dist/umd/objPool.js.map -------------------------------------------------------------------------------- /packages/obj-pool/dist/umd/objPool.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/obj-pool/dist/umd/objPool.min.js -------------------------------------------------------------------------------- /packages/obj-pool/egf.compile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/obj-pool/egf.compile.js -------------------------------------------------------------------------------- /packages/obj-pool/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/obj-pool/package.json -------------------------------------------------------------------------------- /packages/obj-pool/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/obj-pool/src/index.ts -------------------------------------------------------------------------------- /packages/obj-pool/src/obj-pool-interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/obj-pool/src/obj-pool-interfaces.ts -------------------------------------------------------------------------------- /packages/obj-pool/src/obj-pool-mgr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/obj-pool/src/obj-pool-mgr.ts -------------------------------------------------------------------------------- /packages/obj-pool/src/obj-pool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/obj-pool/src/obj-pool.ts -------------------------------------------------------------------------------- /packages/obj-pool/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/packages/obj-pool/tsconfig.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /scripts/checkPnpm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/scripts/checkPnpm.js -------------------------------------------------------------------------------- /scripts/copyDocs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/scripts/copyDocs.js -------------------------------------------------------------------------------- /tool-packages/excel2all-cli/.gitignore: -------------------------------------------------------------------------------- 1 | .excel2all -------------------------------------------------------------------------------- /tool-packages/excel2all-cli/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/tool-packages/excel2all-cli/CHANGELOG.md -------------------------------------------------------------------------------- /tool-packages/excel2all-cli/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/tool-packages/excel2all-cli/LICENSE -------------------------------------------------------------------------------- /tool-packages/excel2all-cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/tool-packages/excel2all-cli/README.md -------------------------------------------------------------------------------- /tool-packages/excel2all-cli/bin/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/tool-packages/excel2all-cli/bin/cli.js -------------------------------------------------------------------------------- /tool-packages/excel2all-cli/bin/config.temp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/tool-packages/excel2all-cli/bin/config.temp.js -------------------------------------------------------------------------------- /tool-packages/excel2all-cli/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/tool-packages/excel2all-cli/package-lock.json -------------------------------------------------------------------------------- /tool-packages/excel2all-cli/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/tool-packages/excel2all-cli/package.json -------------------------------------------------------------------------------- /tool-packages/excel2all/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/tool-packages/excel2all/.gitignore -------------------------------------------------------------------------------- /tool-packages/excel2all/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/tool-packages/excel2all/CHANGELOG.md -------------------------------------------------------------------------------- /tool-packages/excel2all/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/tool-packages/excel2all/LICENSE -------------------------------------------------------------------------------- /tool-packages/excel2all/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/tool-packages/excel2all/README.md -------------------------------------------------------------------------------- /tool-packages/excel2all/dist/cjs/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/tool-packages/excel2all/dist/cjs/lib/index.js -------------------------------------------------------------------------------- /tool-packages/excel2all/dist/es/lib/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/tool-packages/excel2all/dist/es/lib/index.mjs -------------------------------------------------------------------------------- /tool-packages/excel2all/egf.compile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/tool-packages/excel2all/egf.compile.js -------------------------------------------------------------------------------- /tool-packages/excel2all/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/tool-packages/excel2all/package-lock.json -------------------------------------------------------------------------------- /tool-packages/excel2all/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/tool-packages/excel2all/package.json -------------------------------------------------------------------------------- /tool-packages/excel2all/src/convert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/tool-packages/excel2all/src/convert.ts -------------------------------------------------------------------------------- /tool-packages/excel2all/src/file-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/tool-packages/excel2all/src/file-utils.ts -------------------------------------------------------------------------------- /tool-packages/excel2all/src/get-os-eol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/tool-packages/excel2all/src/get-os-eol.ts -------------------------------------------------------------------------------- /tool-packages/excel2all/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/tool-packages/excel2all/src/index.ts -------------------------------------------------------------------------------- /tool-packages/excel2all/src/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/tool-packages/excel2all/src/interfaces.ts -------------------------------------------------------------------------------- /tool-packages/excel2all/src/loger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/tool-packages/excel2all/src/loger.ts -------------------------------------------------------------------------------- /tool-packages/excel2all/src/table-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/tool-packages/excel2all/src/table-utils.ts -------------------------------------------------------------------------------- /tool-packages/excel2all/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/tool-packages/excel2all/tsconfig.json -------------------------------------------------------------------------------- /tools/typedoc/typedoc-theme/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/tools/typedoc/typedoc-theme/LICENSE -------------------------------------------------------------------------------- /tools/typedoc/typedoc-theme/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/tools/typedoc/typedoc-theme/README.md -------------------------------------------------------------------------------- /tools/typedoc/typedoc-theme/bin/plugin.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/typedoc/typedoc-theme/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/tools/typedoc/typedoc-theme/package.json -------------------------------------------------------------------------------- /tools/typedoc/typedoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/tools/typedoc/typedoc.js -------------------------------------------------------------------------------- /transed-packages/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/transed-packages/.gitattributes -------------------------------------------------------------------------------- /transed-packages/c3daxios/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/transed-packages/c3daxios/CHANGELOG.md -------------------------------------------------------------------------------- /transed-packages/c3daxios/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/transed-packages/c3daxios/README.md -------------------------------------------------------------------------------- /transed-packages/c3daxios/dist/es/lib/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/transed-packages/c3daxios/dist/es/lib/index.mjs -------------------------------------------------------------------------------- /transed-packages/c3daxios/egf.compile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/transed-packages/c3daxios/egf.compile.js -------------------------------------------------------------------------------- /transed-packages/c3daxios/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/transed-packages/c3daxios/package.json -------------------------------------------------------------------------------- /transed-packages/c3daxios/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/transed-packages/c3daxios/src/index.ts -------------------------------------------------------------------------------- /transed-packages/c3daxios/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/transed-packages/c3daxios/tsconfig.json -------------------------------------------------------------------------------- /transed-packages/emitter3/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/transed-packages/emitter3/CHANGELOG.md -------------------------------------------------------------------------------- /transed-packages/emitter3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/transed-packages/emitter3/README.md -------------------------------------------------------------------------------- /transed-packages/emitter3/dist/es/lib/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/transed-packages/emitter3/dist/es/lib/index.mjs -------------------------------------------------------------------------------- /transed-packages/emitter3/egf.compile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/transed-packages/emitter3/egf.compile.js -------------------------------------------------------------------------------- /transed-packages/emitter3/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/transed-packages/emitter3/package.json -------------------------------------------------------------------------------- /transed-packages/emitter3/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/transed-packages/emitter3/src/index.ts -------------------------------------------------------------------------------- /transed-packages/emitter3/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/transed-packages/emitter3/tsconfig.json -------------------------------------------------------------------------------- /transed-packages/xstate2c3d/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/transed-packages/xstate2c3d/CHANGELOG.md -------------------------------------------------------------------------------- /transed-packages/xstate2c3d/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/transed-packages/xstate2c3d/README.md -------------------------------------------------------------------------------- /transed-packages/xstate2c3d/egf.compile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/transed-packages/xstate2c3d/egf.compile.js -------------------------------------------------------------------------------- /transed-packages/xstate2c3d/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/transed-packages/xstate2c3d/package.json -------------------------------------------------------------------------------- /transed-packages/xstate2c3d/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from "xstate" -------------------------------------------------------------------------------- /transed-packages/xstate2c3d/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/transed-packages/xstate2c3d/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AILHC/EasyGameFrameworkOpen/HEAD/tsconfig.test.json --------------------------------------------------------------------------------