Cockatrice/libs/protocol/pb/event_list_games.proto
Lukas Brübach 1d1de904e0 Add a wrapper.
Took 35 minutes
2025-10-04 23:49:11 +02:00

10 lines
225 B
Protocol Buffer

syntax = "proto2";
import "room_event.proto";
import "serverinfo_game.proto";
message Event_ListGames {
extend RoomEvent {
optional Event_ListGames ext = 1003;
}
repeated ServerInfo_Game game_list = 1;
}