servatrice/common/pb/room_event.proto
2016-12-11 19:22:39 +01:00

11 lines
237 B
Protocol Buffer

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