mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2025-12-30 06:31:42 -08:00
11 lines
188 B
Protocol Buffer
11 lines
188 B
Protocol Buffer
syntax = "proto2";
|
|
import "game_commands.proto";
|
|
message Command_GameSay {
|
|
extend GameCommand {
|
|
optional Command_GameSay ext = 1002;
|
|
}
|
|
optional string message = 1;
|
|
}
|
|
|
|
|