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

12 lines
269 B
Protocol Buffer

syntax = "proto2";
message RoomEvent {
enum RoomEventType {
LEAVE_ROOM = 1000;
JOIN_ROOM = 1001;
ROOM_SAY = 1002;
LIST_GAMES = 1003;
REMOVE_MESSAGES = 1004;
}
optional sint32 room_id = 1;
extensions 100 to max;
}