servatrice/common/pb/event_room_say.proto
2015-08-25 23:40:08 -04:00

10 lines
208 B
Protocol Buffer

syntax = "proto2";
import "room_event.proto";
message Event_RoomSay {
extend RoomEvent {
optional Event_RoomSay ext = 1002;
}
optional string name = 1;
optional string message = 2;
}