gitextract_k8aqoslt/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ └── workflows/ │ ├── contributors-readme-action.yml │ └── sync.yml ├── .gitignore ├── Config/ │ ├── Defines/ │ │ └── builtin.xml │ ├── Excels/ │ │ ├── Local/ │ │ │ ├── L-Localization-UI.xlsx │ │ │ ├── L-Localization-成就.xlsx │ │ │ └── L-Localization-文本.xlsx │ │ ├── Tables/ │ │ │ ├── C-AchievementConfig-成就表.xlsx │ │ │ ├── D-ItemConfig-道具表-道具-1001.xlsx │ │ │ └── S-SoundsConfig-声音表.xlsx │ │ ├── __beans__.xlsx │ │ ├── __enums__.xlsx │ │ └── __tables__.xlsx │ ├── Tools/ │ │ ├── Luban.CSharp.pdb │ │ ├── Luban.Core.pdb │ │ ├── Luban.DataLoader.Builtin.pdb │ │ ├── Luban.DataTarget.Builtin.pdb │ │ ├── Luban.DataValidator.Builtin.pdb │ │ ├── Luban.L10N.pdb │ │ ├── Luban.Schema.Builtin.pdb │ │ ├── Luban.deps.json │ │ ├── Luban.pdb │ │ ├── Luban.runtimeconfig.json │ │ ├── Templates/ │ │ │ ├── common/ │ │ │ │ ├── cs/ │ │ │ │ │ └── enum.sbn │ │ │ │ └── ts/ │ │ │ │ └── enum.sbn │ │ │ ├── cs-bin/ │ │ │ │ ├── bean.sbn │ │ │ │ ├── table.sbn │ │ │ │ └── tables.sbn │ │ │ ├── cs-code/ │ │ │ │ ├── bean.sbn │ │ │ │ ├── table.sbn │ │ │ │ ├── tabledata.sbn │ │ │ │ └── tables.sbn │ │ │ ├── cs-dotnet-bin/ │ │ │ │ ├── bean.sbn │ │ │ │ ├── table.sbn │ │ │ │ └── tables.sbn │ │ │ ├── cs-dotnet-json/ │ │ │ │ ├── bean.sbn │ │ │ │ ├── table.sbn │ │ │ │ └── tables.sbn │ │ │ └── cs-simple-json/ │ │ │ ├── bean.sbn │ │ │ ├── table.sbn │ │ │ └── tables.sbn │ │ └── nlog.xml │ ├── gen-client-bin.bat │ ├── gen-client-bin.sh │ ├── gen-client-json.bat │ ├── gen-client-json.sh │ ├── gen-server-bin.bat │ ├── gen-server-bin.sh │ ├── gen-server-json.bat │ ├── gen-server-json.sh │ └── luban.conf ├── Docs/ │ ├── 1.Actor模型.md │ ├── 2.Actor&Component&State.md │ ├── Actor入队.md │ ├── 事件Event-timer.md │ ├── 关于协议.md │ ├── 十分钟.md │ ├── 定时器&计划任务Timer.md │ ├── 最后补充.md │ ├── 热更hotfix.md │ └── 网络Net(tcp&http).md ├── FairyGUIProject/ │ ├── Game.fairy │ ├── assets/ │ │ ├── UIBag/ │ │ │ ├── UIBag.xml │ │ │ ├── UIBagContent.xml │ │ │ ├── UIBagItemInfo.xml │ │ │ ├── package.xml │ │ │ └── 组件/ │ │ │ ├── UIBagItem.xml │ │ │ └── UIBagTypeItem.xml │ │ ├── UICommon/ │ │ │ ├── package.xml │ │ │ ├── 字体/ │ │ │ │ ├── RedNumberFont.fnt │ │ │ │ └── YellowNumberFont.fnt │ │ │ └── 组件/ │ │ │ ├── Dialog/ │ │ │ │ ├── UIDialogMessageBox.xml │ │ │ │ └── UIDialogWithoutButton.xml │ │ │ ├── Goods/ │ │ │ │ └── UIGoodItem.xml │ │ │ ├── UIYellowProgresssBar.xml │ │ │ └── button/ │ │ │ ├── UIBackButton.xml │ │ │ ├── UIBlueCheckButton.xml │ │ │ ├── UIBlueNormalButton.xml │ │ │ ├── UIBlueSingleButton.xml │ │ │ ├── UICloseButton.xml │ │ │ ├── UIWhiteCheckButton.xml │ │ │ ├── UIWhiteNormalButton.xml │ │ │ ├── UIWhiteSingleButton.xml │ │ │ ├── UIYellowCheckButton.xml │ │ │ ├── UIYellowNormalButton.xml │ │ │ ├── UIYellowSingleButton.xml │ │ │ └── switch_btn.xml │ │ ├── UICommonAvatar/ │ │ │ └── package.xml │ │ ├── UILauncher/ │ │ │ ├── Scene/ │ │ │ │ ├── UILauncher.xml │ │ │ │ ├── UILauncherUpgrade.xml │ │ │ │ └── UILauncherUpgradeContent.xml │ │ │ ├── Widget/ │ │ │ │ ├── UILauncherEnterButton.xml │ │ │ │ └── UILoadingMainProgressBar.xml │ │ │ └── package.xml │ │ ├── UILoading/ │ │ │ ├── Scene/ │ │ │ │ └── UILoadingScene.xml │ │ │ ├── Widget/ │ │ │ │ └── UILoadingCenterBox.xml │ │ │ └── package.xml │ │ ├── UILogin/ │ │ │ ├── Scene/ │ │ │ │ ├── UIAnnouncement.xml │ │ │ │ ├── UIAnnouncementContent.xml │ │ │ │ ├── UILogin.xml │ │ │ │ ├── UIPlayerCreate.xml │ │ │ │ ├── UIPlayerList.xml │ │ │ │ ├── UIPlayerListItem.xml │ │ │ │ └── UIPlayerListItemLoginButton.xml │ │ │ ├── Widget/ │ │ │ │ └── UILoginButton.xml │ │ │ └── package.xml │ │ ├── UIMain/ │ │ │ ├── BagButton.xml │ │ │ ├── UIMain.xml │ │ │ └── package.xml │ │ └── UIPlayer/ │ │ └── package.xml │ ├── plugins/ │ │ ├── gencode/ │ │ │ ├── GenCode_CSharp.lua │ │ │ ├── main.lua │ │ │ └── package.json │ │ └── plugins.iml │ └── settings/ │ ├── Adaptation.json │ ├── Common.json │ ├── CustomProperties.json │ ├── PackageGroup.json │ ├── Publish.json │ └── i18n.json ├── LICENSE.md ├── Protobuf/ │ ├── Bag_100.proto │ ├── Basic_10.proto │ ├── Common_20.proto │ ├── Inner_Basic_2.proto │ ├── Proto2CsExport-All.bat │ ├── Proto2CsExport_Client.bat │ ├── Proto2CsExport_Client.sh │ ├── Proto2CsExport_Server.bat │ ├── Proto2CsExport_Server.sh │ ├── User_300.proto │ ├── _-120_InnerSocial_s.proto │ ├── _120_Social.proto │ └── readme.txt ├── README.md └── docker/ ├── mongo/ │ └── docker-compose.yml └── redis/ ├── docker-compose.yml └── redis.conf