mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-10 16:24:45 -07:00
--------- Co-authored-by: Lukas Brübach <Bruebach.Lukas@bdosecurity.de> Co-authored-by: ebbit1q <ebbit1q@gmail.com>
12 lines
269 B
Protocol Buffer
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;
|
|
}
|