mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-01-08 19:33:22 -08:00
11 lines
269 B
Protocol Buffer
11 lines
269 B
Protocol Buffer
syntax = "proto2";
|
|
import "game_event.proto";
|
|
import "game_event_context.proto";
|
|
|
|
message GameEventContainer {
|
|
optional uint32 game_id = 1;
|
|
repeated GameEvent event_list = 2;
|
|
optional GameEventContext context = 3;
|
|
optional uint32 seconds_elapsed = 4;
|
|
}
|