Use bigint for gold (#1000)

This commit is contained in:
Scott Anderson
2025-06-02 15:48:24 -04:00
committed by 1brucben
parent cbecfac981
commit e763ade705
20 changed files with 128 additions and 101 deletions
+2 -1
View File
@@ -2,6 +2,7 @@ import { consolex } from "../Consolex";
import {
Execution,
Game,
Gold,
Player,
PlayerID,
Tick,
@@ -26,7 +27,7 @@ export class ConstructionExecution implements Execution {
private ticksUntilComplete: Tick;
private cost: number;
private cost: Gold;
constructor(
private ownerId: PlayerID,