mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-22 14:53:53 -07:00
added responses + events
This commit is contained in:
parent
26f0f0df0e
commit
ca9122b9fb
84 changed files with 815 additions and 1482 deletions
14
common/pb/proto/serverinfo_zone.proto
Normal file
14
common/pb/proto/serverinfo_zone.proto
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
import "serverinfo_card.proto";
|
||||
|
||||
message ServerInfo_Zone {
|
||||
enum ZoneType {
|
||||
PrivateZone = 0;
|
||||
PublicZone = 1;
|
||||
HiddenZone = 2;
|
||||
}
|
||||
optional string name = 1;
|
||||
optional ZoneType type = 2;
|
||||
optional bool with_coords = 3;
|
||||
optional sint32 card_count = 4;
|
||||
repeated ServerInfo_Card card_list = 5;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue