have game server store game

This commit is contained in:
Evan
2024-12-04 18:53:36 -08:00
parent 22b877e85c
commit 731536931e
7 changed files with 403 additions and 10 deletions
+1
View File
@@ -65,6 +65,7 @@ export interface Config {
defensePostDefenseBonus(): number
falloutDefenseModifier(): number
maxUnitCost(): number
gameStorageBucketName(): string
}
export interface Theme {
+3
View File
@@ -20,6 +20,9 @@ export class DefaultConfig implements Config {
return 2
}
gameStorageBucketName(): string {
return "openfront-games"
}
defensePostRange(): number {
return 30
}