mirror of
https://gitee.com/jisol/jisol-game/
synced 2025-06-26 11:24:46 +00:00
20 lines
456 B
Protocol Buffer
20 lines
456 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "cn.jisol.ngame.proto";
|
|
|
|
|
|
//PVP 开始
|
|
message GPVPStart {
|
|
string leftTactical = 1; //左边的布阵
|
|
map<int64, string> leftPets = 2; //左边的宠物 key:宠物Id value 宠物配置Id
|
|
string rightTactical = 3; //右边的布阵
|
|
map<int64, string> rightPets = 4; //右边的宠物 key:宠物Id value 宠物配置Id
|
|
}
|
|
|
|
//PVP 消息提示
|
|
message GPVPText {
|
|
string text = 1; //消息提示
|
|
}
|
|
|
|
|