This commit is contained in:
Ryan Barlow
2026-01-29 21:15:02 +00:00
parent db50603b71
commit 0803b71e81
6 changed files with 31 additions and 40 deletions
+7 -1
View File
@@ -1,6 +1,6 @@
import { JWK } from "jose";
import { GameEnv, ServerConfig } from "../../src/core/configuration/Config";
import { PublicGameModifiers } from "../../src/core/game/Game";
import { GameType, PublicGameModifiers } from "../../src/core/game/Game";
import { GameID } from "../../src/core/Schemas";
export class TestServerConfig implements ServerConfig {
@@ -46,6 +46,12 @@ export class TestServerConfig implements ServerConfig {
turnIntervalMs(): number {
throw new Error("Method not implemented.");
}
ticksPerSecond(): number {
throw new Error("Method not implemented.");
}
spawnPhaseTicks(gameType: GameType): number {
throw new Error("Method not implemented.");
}
gameCreationRate(): number {
throw new Error("Method not implemented.");
}