mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-01-27 23:34:27 -08:00
10 lines
171 B
Protocol Buffer
10 lines
171 B
Protocol Buffer
import "room_event.proto";
|
|
|
|
message Event_RoomSay {
|
|
extend RoomEvent {
|
|
optional Event_RoomSay ext = 1002;
|
|
}
|
|
optional string name = 1;
|
|
optional string message = 2;
|
|
}
|