mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-14 06:22:15 -07:00
9 lines
179 B
Protocol Buffer
9 lines
179 B
Protocol Buffer
syntax = "proto2";
|
|
import "room_event.proto";
|
|
|
|
message Event_LeaveRoom {
|
|
extend RoomEvent {
|
|
optional Event_LeaveRoom ext = 1000;
|
|
}
|
|
optional string name = 1;
|
|
}
|