mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2025-12-25 04:14:34 -08:00
9 lines
198 B
Protocol Buffer
9 lines
198 B
Protocol Buffer
syntax = "proto2";
|
|
import "game_commands.proto";
|
|
message Command_SetActivePhase {
|
|
extend GameCommand {
|
|
optional Command_SetActivePhase ext = 1023;
|
|
}
|
|
optional uint32 phase = 1;
|
|
}
|