protocol changes for drafting

This commit is contained in:
ebbit1q 2025-09-02 13:52:30 +02:00
parent 5381562a5e
commit c4026cd1ec
17 changed files with 212 additions and 2 deletions

View file

@ -0,0 +1,11 @@
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;
}