根据 chat 示例创建 game-server,支持分布式部署、域名访问、数据库连接和基础使用
This commit is contained in:
14
game-server/config/clientProtos.ts
Normal file
14
game-server/config/clientProtos.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
module.exports = {
|
||||
"chat.chatHandler.send": {
|
||||
"required string content": 1,
|
||||
"required string target": 2,
|
||||
"required string rid": 3,
|
||||
"required string from": 4,
|
||||
},
|
||||
"chat.chatHandler.send2": {
|
||||
"required string rid": 1,
|
||||
"required string content": 2,
|
||||
"required string from": 3,
|
||||
"required string target": 4
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user