mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-15 11:38:49 -07:00
added responses + events
This commit is contained in:
parent
26f0f0df0e
commit
ca9122b9fb
84 changed files with 815 additions and 1482 deletions
18
common/pb/proto/serverinfo_game.proto
Normal file
18
common/pb/proto/serverinfo_game.proto
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
import "serverinfo_user.proto";
|
||||
|
||||
message ServerInfo_Game {
|
||||
optional sint32 room_id = 1;
|
||||
optional sint32 game_id = 2;
|
||||
optional string description = 3;
|
||||
optional bool with_password = 4;
|
||||
optional uint32 player_count = 5;
|
||||
optional uint32 max_players = 6;
|
||||
optional bool started = 7;
|
||||
repeated sint32 game_types = 8;
|
||||
optional ServerInfo_User creator_info = 9;
|
||||
optional bool only_buddies = 10;
|
||||
optional bool only_registered = 11;
|
||||
optional bool spectators_allowed = 12;
|
||||
optional bool spectators_need_password = 13;
|
||||
optional uint32 spectators_count = 14;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue