use renderTroops & renderNumber for playerinfo overlay

This commit is contained in:
evanpelle
2025-01-21 14:33:20 -08:00
committed by Evan
parent 8fea4d7bfa
commit 42490e2aef
3 changed files with 4 additions and 7 deletions
+1
View File
@@ -50,6 +50,7 @@ export async function loadTerrainFromFile(fileData: string): Promise<GameMap> {
rawData[i] = packedByte;
if (packedByte & 0b10000000) numLand++;
}
return new GameMapImpl(width, height, rawData, numLand)
}