Cockatrice/libs/pb/game_replay.proto
Lukas Brübach 01378b8314 Turn things in common into separate libs.
Took 2 hours 27 minutes
2025-10-04 15:10:20 +02:00

10 lines
281 B
Protocol Buffer

syntax = "proto2";
import "serverinfo_game.proto";
import "game_event_container.proto";
message GameReplay {
optional uint64 replay_id = 1;
optional ServerInfo_Game game_info = 2;
repeated GameEventContainer event_list = 3;
optional uint32 duration_seconds = 4;
}