mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-14 14:32:15 -07:00
10 lines
221 B
Protocol Buffer
10 lines
221 B
Protocol Buffer
syntax = "proto2";
|
|
import "room_event.proto";
|
|
|
|
message Event_RemoveMessages {
|
|
extend RoomEvent {
|
|
optional Event_RemoveMessages ext = 1004;
|
|
}
|
|
optional string name = 1;
|
|
optional uint32 amount = 2;
|
|
}
|