Cockatrice/common/pb/command_draft_options_select.proto
2025-09-28 16:58:43 +02:00

11 lines
308 B
Protocol Buffer

syntax = "proto2";
import "game_commands.proto";
import "draft_options.proto";
// Sends the options to use to draft before the draft starts.
message Command_DraftOptionsSelect {
extend GameCommand {
optional Command_DraftOptionsSelect ext = 1035;
}
optional Draft_Options options = 1;
}