little update

This commit is contained in:
2026-08-12 21:11:39 +03:00
parent e3d5de12fe
commit 3af436d48a
37 changed files with 2299 additions and 9 deletions

View File

@@ -1,3 +1,5 @@
syntax = "proto3";
message Team {
string team_name = 1;
string team_id = 2;
@@ -10,22 +12,22 @@ message GameService {
//board config
string checker_type =3;
int gets = 4;
int32 gets = 4;
string name = 5;
int places = 6;
int puts =7;
int default_score = 8;
int checker_timeout = 9;
int32 places = 6;
int32 puts =7;
int32 default_score = 8;
int32 checker_timeout = 9;
}
// all time is in unixtime
message StartGameRequest {
int teams = 1;
int32 team_count = 1;
repeated GameService services = 2;
repeated Team teams = 3;
int game_starts_at = 4;
int rounds = 5;
int network_opens_at = 6;
int32 game_starts_at = 4;
int32 rounds = 5;
int32 network_opens_at = 6;
}