fix map load build error

This commit is contained in:
evanpelle
2024-10-08 19:36:40 -07:00
parent a88cbb5aaa
commit d7725e3619
2 changed files with 3 additions and 1 deletions
+2
View File
@@ -162,6 +162,8 @@
* disable double tap on mobile DONE 10/6/2024
* donate troops button DONE 10/7/2024
* Make fake humans spawn by their country
* Increase disk size
* NPC more likely to accept alliance fewer alliance player has
* rewrite mobile input handling
* fake humans target enemies
* create private lobby menu
+1 -1
View File
@@ -1,5 +1,5 @@
import {Cell, TerrainType} from './Game';
import binAsString from "!!binary-loader!../../../resources/TopoWorldMap.bin";
import binAsString from "!!binary-loader!../../../resources/maps/WorldMap.bin";
export class TerrainMap {
constructor(public readonly tiles: Terrain[][], public readonly numLandTiles: number) { }