mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2025-12-25 12:24:26 -08:00
10 lines
237 B
Protocol Buffer
10 lines
237 B
Protocol Buffer
syntax = "proto2";
|
|
import "game_commands.proto";
|
|
message Command_DeckSelect {
|
|
extend GameCommand {
|
|
optional Command_DeckSelect ext = 1029;
|
|
}
|
|
optional string deck = 1;
|
|
optional sint32 deck_id = 2 [default = -1];
|
|
}
|