This repository has been archived by the owner on Jan 31, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Nathan Flurry <[email protected]>
- Loading branch information
1 parent
c7bb013
commit 9effe19
Showing
22 changed files
with
1,383 additions
and
1,401 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,29 @@ | ||
import * as cloud from '@rivet-gg/api-internal/api/resources/cloud'; | ||
import { Rivet } from '@rivet-gg/api-internal'; | ||
|
||
export interface MatchmakerConfigExt { | ||
config: cloud.version.matchmaker.Config; | ||
config: Rivet.cloud.version.matchmaker.Config; | ||
gameModes: GameModeExt[]; | ||
docker: GameModeRuntimeDockerExt; | ||
} | ||
|
||
export interface GameModeExt { | ||
nameId: string; | ||
gameMode: cloud.version.matchmaker.gameMode.GameMode; | ||
gameMode: Rivet.cloud.version.matchmaker.gameMode.GameMode; | ||
regions: GameModeRegionExt[]; | ||
} | ||
|
||
export interface GameModeRegionExt { | ||
nameId: string; | ||
region: cloud.version.matchmaker.gameMode.GameModeRegion; | ||
region: Rivet.cloud.version.matchmaker.gameMode.GameModeRegion; | ||
} | ||
|
||
export interface GameModeRuntimeDockerExt { | ||
docker: cloud.version.matchmaker.gameMode.GameModeRuntimeDocker; | ||
docker: Rivet.cloud.version.matchmaker.gameMode.GameModeRuntimeDocker; | ||
env: { key: string; value: string }[]; | ||
ports: GameModeRuntimeDockerPortExt[]; | ||
} | ||
|
||
export interface GameModeRuntimeDockerPortExt { | ||
label: string; | ||
port: cloud.version.matchmaker.gameMode.GameModeRuntimeDockerPort; | ||
port: Rivet.cloud.version.matchmaker.gameMode.GameModeRuntimeDockerPort; | ||
} |
Oops, something went wrong.