servatrice/common/pb/proto/room_event.proto
2011-12-29 19:40:41 +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;
}