12 lines
185 B
Protocol Buffer
12 lines
185 B
Protocol Buffer
syntax = "proto2";
|
|
import "room_event.proto";
|
|
|
|
message Event_LeaveRoom {
|
|
extend RoomEvent {
|
|
optional Event_LeaveRoom ext = 1000;
|
|
}
|
|
optional string name = 1;
|
|
}
|
|
|
|
|
|
|