Cockatrice/libs/protocol/pb/command_dump_zone.proto
Lukas Brübach 1d1de904e0 Add a wrapper.
Took 35 minutes
2025-10-04 23:49:11 +02:00

11 lines
331 B
Protocol Buffer

syntax = "proto2";
import "game_commands.proto";
message Command_DumpZone {
extend GameCommand {
optional Command_DumpZone ext = 1024;
}
optional sint32 player_id = 1 [default = -1];
optional string zone_name = 2;
optional sint32 number_cards = 3;
optional bool is_reversed = 4 [default = false];
}