├── Excel ├── BossWorld.xlsm ├── Buffs.xlsm ├── Effect.xlsm ├── Goods.xlsm ├── Maps.xlsm ├── Monster.xlsm ├── MonsterBehavior.xlsm ├── MonsterProp.xlsm ├── Skill.xlsm ├── SkillEffect.xlsm ├── _打包单个配置.bat ├── ~$Buffs.xlsm ├── ~$Skill.xlsm └── ~$SkillEffect.xlsm ├── LICENSE ├── Makefile ├── README.md ├── boot └── boot.go ├── config ├── def.go ├── func.go ├── json │ ├── BossWorld.json │ ├── Buffs.json │ ├── Effect.json │ ├── Goods.json │ ├── Maps.json │ ├── Monster.json │ ├── MonsterBehavior.json │ ├── MonsterProp.json │ ├── Skill.json │ ├── SkillEffect.json │ └── system │ │ └── Server.json └── maps │ └── 101 ├── global ├── build_debug.go ├── build_release.go ├── const.go ├── db_table.go ├── function.go ├── game.go ├── gw.go ├── lang │ ├── cn.go │ ├── const.go │ ├── en.go │ └── tw.go ├── map_mod.go ├── node.go ├── node_proto.go ├── pb_def.go └── player_mod.go ├── go.mod ├── go.sum ├── gw ├── gw_cache.go ├── gw_client.go ├── gw_lib.go └── gw_login.go ├── hotfix └── 20210119 │ └── 20210119.go ├── lib ├── db.go ├── degree.go ├── goods.go ├── lib.go ├── p_msg_encode.go ├── props.go └── type.go ├── main.exe ├── main.go ├── maps ├── maps.go ├── maps_actor.go ├── maps_agent.go ├── maps_aoi.go ├── maps_aoi_const.go ├── maps_app.go ├── maps_astar.go ├── maps_broadcast.go ├── maps_buff.go ├── maps_config.go ├── maps_misc.go ├── maps_monster.go ├── maps_monster_behavior.go ├── maps_move.go ├── maps_node_proto.go ├── maps_prop.go ├── maps_role.go ├── maps_skill.go ├── maps_skill_callback.go ├── maps_skill_effect.go ├── maps_svr.go ├── mod │ └── mod_common.go └── type.go ├── player ├── attr.go ├── bag.go ├── const.go ├── hook.go ├── login.go ├── map.go ├── plalyer.go ├── props.go ├── role.go ├── skill.go ├── transaction.go └── type.go ├── proto ├── pb_auto.go ├── proto.go └── router │ └── router.go ├── service └── sys_account_server.go ├── start.sh ├── test_node.go └── tool ├── exporter ├── build.bat ├── excel │ ├── Def.go │ ├── excel.go │ └── type.go ├── main.go └── toGo │ └── to-go.go └── pbBuild ├── build.bat ├── main.go ├── parser ├── field.go ├── parser.go └── type.go ├── to_lua_client.go └── to_server.go /Excel/BossWorld.xlsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/Excel/BossWorld.xlsm -------------------------------------------------------------------------------- /Excel/Buffs.xlsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/Excel/Buffs.xlsm -------------------------------------------------------------------------------- /Excel/Effect.xlsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/Excel/Effect.xlsm -------------------------------------------------------------------------------- /Excel/Goods.xlsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/Excel/Goods.xlsm -------------------------------------------------------------------------------- /Excel/Maps.xlsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/Excel/Maps.xlsm -------------------------------------------------------------------------------- /Excel/Monster.xlsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/Excel/Monster.xlsm -------------------------------------------------------------------------------- /Excel/MonsterBehavior.xlsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/Excel/MonsterBehavior.xlsm -------------------------------------------------------------------------------- /Excel/MonsterProp.xlsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/Excel/MonsterProp.xlsm -------------------------------------------------------------------------------- /Excel/Skill.xlsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/Excel/Skill.xlsm -------------------------------------------------------------------------------- /Excel/SkillEffect.xlsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/Excel/SkillEffect.xlsm -------------------------------------------------------------------------------- /Excel/_打包单个配置.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/Excel/_打包单个配置.bat -------------------------------------------------------------------------------- /Excel/~$Buffs.xlsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/Excel/~$Buffs.xlsm -------------------------------------------------------------------------------- /Excel/~$Skill.xlsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/Excel/~$Skill.xlsm -------------------------------------------------------------------------------- /Excel/~$SkillEffect.xlsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/Excel/~$SkillEffect.xlsm -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/README.md -------------------------------------------------------------------------------- /boot/boot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/boot/boot.go -------------------------------------------------------------------------------- /config/def.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/config/def.go -------------------------------------------------------------------------------- /config/func.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/config/func.go -------------------------------------------------------------------------------- /config/json/BossWorld.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/config/json/BossWorld.json -------------------------------------------------------------------------------- /config/json/Buffs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/config/json/Buffs.json -------------------------------------------------------------------------------- /config/json/Effect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/config/json/Effect.json -------------------------------------------------------------------------------- /config/json/Goods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/config/json/Goods.json -------------------------------------------------------------------------------- /config/json/Maps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/config/json/Maps.json -------------------------------------------------------------------------------- /config/json/Monster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/config/json/Monster.json -------------------------------------------------------------------------------- /config/json/MonsterBehavior.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/config/json/MonsterBehavior.json -------------------------------------------------------------------------------- /config/json/MonsterProp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/config/json/MonsterProp.json -------------------------------------------------------------------------------- /config/json/Skill.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/config/json/Skill.json -------------------------------------------------------------------------------- /config/json/SkillEffect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/config/json/SkillEffect.json -------------------------------------------------------------------------------- /config/json/system/Server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/config/json/system/Server.json -------------------------------------------------------------------------------- /config/maps/101: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/config/maps/101 -------------------------------------------------------------------------------- /global/build_debug.go: -------------------------------------------------------------------------------- 1 | //+build debug 2 | 3 | package global 4 | 5 | const DEBUG = true 6 | -------------------------------------------------------------------------------- /global/build_release.go: -------------------------------------------------------------------------------- 1 | //+build !debug 2 | 3 | package global 4 | 5 | const DEBUG = false 6 | -------------------------------------------------------------------------------- /global/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/global/const.go -------------------------------------------------------------------------------- /global/db_table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/global/db_table.go -------------------------------------------------------------------------------- /global/function.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/global/function.go -------------------------------------------------------------------------------- /global/game.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/global/game.go -------------------------------------------------------------------------------- /global/gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/global/gw.go -------------------------------------------------------------------------------- /global/lang/cn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/global/lang/cn.go -------------------------------------------------------------------------------- /global/lang/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/global/lang/const.go -------------------------------------------------------------------------------- /global/lang/en.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/global/lang/en.go -------------------------------------------------------------------------------- /global/lang/tw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/global/lang/tw.go -------------------------------------------------------------------------------- /global/map_mod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/global/map_mod.go -------------------------------------------------------------------------------- /global/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/global/node.go -------------------------------------------------------------------------------- /global/node_proto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/global/node_proto.go -------------------------------------------------------------------------------- /global/pb_def.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/global/pb_def.go -------------------------------------------------------------------------------- /global/player_mod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/global/player_mod.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/go.sum -------------------------------------------------------------------------------- /gw/gw_cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/gw/gw_cache.go -------------------------------------------------------------------------------- /gw/gw_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/gw/gw_client.go -------------------------------------------------------------------------------- /gw/gw_lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/gw/gw_lib.go -------------------------------------------------------------------------------- /gw/gw_login.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/gw/gw_login.go -------------------------------------------------------------------------------- /hotfix/20210119/20210119.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/hotfix/20210119/20210119.go -------------------------------------------------------------------------------- /lib/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/lib/db.go -------------------------------------------------------------------------------- /lib/degree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/lib/degree.go -------------------------------------------------------------------------------- /lib/goods.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/lib/goods.go -------------------------------------------------------------------------------- /lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/lib/lib.go -------------------------------------------------------------------------------- /lib/p_msg_encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/lib/p_msg_encode.go -------------------------------------------------------------------------------- /lib/props.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/lib/props.go -------------------------------------------------------------------------------- /lib/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/lib/type.go -------------------------------------------------------------------------------- /main.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/main.exe -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/main.go -------------------------------------------------------------------------------- /maps/maps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/maps/maps.go -------------------------------------------------------------------------------- /maps/maps_actor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/maps/maps_actor.go -------------------------------------------------------------------------------- /maps/maps_agent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/maps/maps_agent.go -------------------------------------------------------------------------------- /maps/maps_aoi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/maps/maps_aoi.go -------------------------------------------------------------------------------- /maps/maps_aoi_const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/maps/maps_aoi_const.go -------------------------------------------------------------------------------- /maps/maps_app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/maps/maps_app.go -------------------------------------------------------------------------------- /maps/maps_astar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/maps/maps_astar.go -------------------------------------------------------------------------------- /maps/maps_broadcast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/maps/maps_broadcast.go -------------------------------------------------------------------------------- /maps/maps_buff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/maps/maps_buff.go -------------------------------------------------------------------------------- /maps/maps_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/maps/maps_config.go -------------------------------------------------------------------------------- /maps/maps_misc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/maps/maps_misc.go -------------------------------------------------------------------------------- /maps/maps_monster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/maps/maps_monster.go -------------------------------------------------------------------------------- /maps/maps_monster_behavior.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/maps/maps_monster_behavior.go -------------------------------------------------------------------------------- /maps/maps_move.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/maps/maps_move.go -------------------------------------------------------------------------------- /maps/maps_node_proto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/maps/maps_node_proto.go -------------------------------------------------------------------------------- /maps/maps_prop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/maps/maps_prop.go -------------------------------------------------------------------------------- /maps/maps_role.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/maps/maps_role.go -------------------------------------------------------------------------------- /maps/maps_skill.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/maps/maps_skill.go -------------------------------------------------------------------------------- /maps/maps_skill_callback.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/maps/maps_skill_callback.go -------------------------------------------------------------------------------- /maps/maps_skill_effect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/maps/maps_skill_effect.go -------------------------------------------------------------------------------- /maps/maps_svr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/maps/maps_svr.go -------------------------------------------------------------------------------- /maps/mod/mod_common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/maps/mod/mod_common.go -------------------------------------------------------------------------------- /maps/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/maps/type.go -------------------------------------------------------------------------------- /player/attr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/player/attr.go -------------------------------------------------------------------------------- /player/bag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/player/bag.go -------------------------------------------------------------------------------- /player/const.go: -------------------------------------------------------------------------------- 1 | package player 2 | 3 | const ( 4 | TIMER_EXIT int32 = iota + 1 5 | ) 6 | 7 | -------------------------------------------------------------------------------- /player/hook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/player/hook.go -------------------------------------------------------------------------------- /player/login.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/player/login.go -------------------------------------------------------------------------------- /player/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/player/map.go -------------------------------------------------------------------------------- /player/plalyer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/player/plalyer.go -------------------------------------------------------------------------------- /player/props.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/player/props.go -------------------------------------------------------------------------------- /player/role.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/player/role.go -------------------------------------------------------------------------------- /player/skill.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/player/skill.go -------------------------------------------------------------------------------- /player/transaction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/player/transaction.go -------------------------------------------------------------------------------- /player/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/player/type.go -------------------------------------------------------------------------------- /proto/pb_auto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/proto/pb_auto.go -------------------------------------------------------------------------------- /proto/proto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/proto/proto.go -------------------------------------------------------------------------------- /proto/router/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/proto/router/router.go -------------------------------------------------------------------------------- /service/sys_account_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/service/sys_account_server.go -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/start.sh -------------------------------------------------------------------------------- /test_node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/test_node.go -------------------------------------------------------------------------------- /tool/exporter/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/tool/exporter/build.bat -------------------------------------------------------------------------------- /tool/exporter/excel/Def.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/tool/exporter/excel/Def.go -------------------------------------------------------------------------------- /tool/exporter/excel/excel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/tool/exporter/excel/excel.go -------------------------------------------------------------------------------- /tool/exporter/excel/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/tool/exporter/excel/type.go -------------------------------------------------------------------------------- /tool/exporter/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/tool/exporter/main.go -------------------------------------------------------------------------------- /tool/exporter/toGo/to-go.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/tool/exporter/toGo/to-go.go -------------------------------------------------------------------------------- /tool/pbBuild/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/tool/pbBuild/build.bat -------------------------------------------------------------------------------- /tool/pbBuild/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/tool/pbBuild/main.go -------------------------------------------------------------------------------- /tool/pbBuild/parser/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/tool/pbBuild/parser/field.go -------------------------------------------------------------------------------- /tool/pbBuild/parser/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/tool/pbBuild/parser/parser.go -------------------------------------------------------------------------------- /tool/pbBuild/parser/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/tool/pbBuild/parser/type.go -------------------------------------------------------------------------------- /tool/pbBuild/to_lua_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/tool/pbBuild/to_lua_client.go -------------------------------------------------------------------------------- /tool/pbBuild/to_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangmanlin/go-game-server/HEAD/tool/pbBuild/to_server.go --------------------------------------------------------------------------------