mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-14 14:32:15 -07:00
16 lines
482 B
Protocol Buffer
16 lines
482 B
Protocol Buffer
syntax = "proto2";
|
|
import "game_event.proto";
|
|
import "serverinfo_card.proto";
|
|
|
|
// Sent out by the server when a new pack is available, implicitly signals the start of the round timer
|
|
message Event_DraftPack {
|
|
extend GameEvent {
|
|
optional Event_DraftPack ext = 2022;
|
|
}
|
|
|
|
// Index in the sequence of pick selections made
|
|
optional sint32 selection_index = 1 [default = -1];
|
|
|
|
// sequence of cards in the pack by index
|
|
repeated ServerInfo_Card cards = 2;
|
|
}
|