mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2025-12-27 13:14:13 -08:00
10 lines
203 B
Protocol Buffer
10 lines
203 B
Protocol Buffer
syntax = "proto2";
|
|
import "game_event.proto";
|
|
|
|
message Event_SetActivePlayer {
|
|
extend GameEvent {
|
|
optional Event_SetActivePlayer ext = 2016;
|
|
}
|
|
optional sint32 active_player_id = 1;
|
|
}
|