JisolGame/JisolGameCocos/proto/GUIMessage.proto

15 lines
275 B
Protocol Buffer
Raw Permalink Normal View History

2023-11-14 03:35:48 +08:00
syntax = "proto3";
option java_package = "cn.jisol.ngame.proto";
2024-01-05 02:15:38 +08:00
//发送聊天信息
2023-11-14 03:35:48 +08:00
message GUIChatMessage {
2023-11-14 18:52:25 +08:00
string message = 1; //聊天内容
2023-11-14 03:35:48 +08:00
}
2024-01-05 02:15:38 +08:00
message GUIChatMessageDTO {
GUIChatMessage message = 1; //聊天内容
string playerName = 2;
int64 playerId = 3;
}