This commit is contained in:
React User
2026-05-02 20:22:35 +00:00
parent 2432062db8
commit 146510ddeb
170 changed files with 7411 additions and 1258 deletions
+4
View File
@@ -24,6 +24,8 @@ export interface Settings {
iap_dummy_mode?: boolean;
/** Secret for dedicated game server only: PATCH /internal/match/:matchId and .../winner */
dedicated_server_secret?: string;
/** Directory for matchmaker.log, history.log (default: "logs" under cwd) */
log_directory?: string;
}
export interface Player {
@@ -41,6 +43,8 @@ export interface Room {
GameName: string;
Port: number;
InitTime: number;
/** Internal runtime flag: whether the dedicated process has already been started. */
instance_started?: boolean;
/** Row id in public.matches; game server uses this with X-Dedicated-Server-Secret */
match_id?: number;
/** Only on GET / responses: authenticated users team (Players[0]=red, Players[1]=blue) */