mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-12 17:14:52 -07:00
added menu item: game->game information, issue #1 fixed
This commit is contained in:
parent
5ff1fd8ec6
commit
542fd2c5c8
12 changed files with 182 additions and 88 deletions
|
|
@ -1,20 +1,22 @@
|
|||
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 sint32 server_id = 1 [default = -1];
|
||||
optional sint32 room_id = 2 [default = -1];
|
||||
optional sint32 game_id = 3 [default = -1];
|
||||
optional string description = 4;
|
||||
optional bool with_password = 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;
|
||||
optional uint32 start_time = 15;
|
||||
optional sint32 server_id = 16 [default = -1];
|
||||
repeated sint32 game_types = 7;
|
||||
optional ServerInfo_User creator_info = 8;
|
||||
optional bool only_buddies = 9;
|
||||
optional bool only_registered = 10;
|
||||
optional bool spectators_allowed = 11;
|
||||
optional bool spectators_need_password = 12;
|
||||
optional bool spectators_can_chat = 13;
|
||||
optional bool spectators_omniscient = 14;
|
||||
optional uint32 player_count = 30;
|
||||
optional uint32 spectators_count = 31;
|
||||
optional bool started = 50;
|
||||
optional uint32 start_time = 51;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue