That marker is only recognized by pb3-compatible compilers, meaning that tools which are otherwise compatible with our files break on them. Notably, this includes hprotoc (for haskell).
16 lines
410 B
Protocol Buffer
16 lines
410 B
Protocol Buffer
import "room_event.proto";
|
|
|
|
message Event_RoomSay {
|
|
extend RoomEvent {
|
|
optional Event_RoomSay ext = 1002;
|
|
}
|
|
enum RoomMessageType {
|
|
Welcome = 1; // rooms welcome message
|
|
ChatHistory = 2; // rooms chat history message
|
|
}
|
|
optional string name = 1;
|
|
optional string message = 2;
|
|
optional RoomMessageType message_type = 3;
|
|
optional uint64 time_of = 4;
|
|
|
|
}
|