mirror of
https://gitee.com/jisol/jisol-game/
synced 2025-06-26 19:34:47 +00:00
18 lines
259 B
Protocol Buffer
18 lines
259 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "cn.jisol.ngame.proto";
|
|
|
|
//绑定客户端Id
|
|
message GBindClientID{
|
|
int32 clientId = 1; //输入的Id
|
|
}
|
|
|
|
//绑定客户端角色
|
|
message GBindClientRole{
|
|
int32 role = 1; //角色 0.玩家 1.从服务器
|
|
}
|
|
|
|
|
|
|
|
|