mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-27 17:13:54 -07:00
switched from qmake to cmake
This commit is contained in:
parent
16541141bd
commit
3c24899de6
143 changed files with 643 additions and 1254 deletions
23
common/pb/serverinfo_zone.proto
Normal file
23
common/pb/serverinfo_zone.proto
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
import "serverinfo_card.proto";
|
||||
|
||||
message ServerInfo_Zone {
|
||||
enum ZoneType {
|
||||
// PrivateZone: Contents of the zone are always visible to the owner,
|
||||
// but not to anyone else.
|
||||
// PublicZone: Contents of the zone are always visible to anyone.
|
||||
// HiddenZone: Contents of the zone are never visible to anyone.
|
||||
// However, the owner of the zone can issue a dump_zone command,
|
||||
// setting beingLookedAt to true.
|
||||
// Cards in a zone with the type HiddenZone are referenced by their
|
||||
// list index, whereas cards in any other zone are referenced by their ids.
|
||||
|
||||
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