mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-14 22:42:14 -07:00
11 lines
308 B
Protocol Buffer
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;
|
|
}
|