servatrice/common/pb/room_event.proto
2012-01-21 19:21:57 +01:00

10 lines
182 B
Protocol Buffer

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;
}