JisolGame/JisolGameCocos/proto/GUIMessage.proto
DESKTOP-5RP3AKU\Jisol c0cfcf98fc 提交
2024-01-05 02:15:38 +08:00

15 lines
275 B
Protocol Buffer

syntax = "proto3";
option java_package = "cn.jisol.ngame.proto";
//发送聊天信息
message GUIChatMessage {
string message = 1; //聊天内容
}
message GUIChatMessageDTO {
GUIChatMessage message = 1; //聊天内容
string playerName = 2;
int64 playerId = 3;
}