Update Maps.ts

This commit is contained in:
SunnyBoyWTF
2025-02-20 08:47:10 -05:00
committed by GitHub
parent e523b3eda3
commit d581f14f28
+3
View File
@@ -5,6 +5,7 @@ import mena from "../../../resources/maps/Mena.png";
import northAmerica from "../../../resources/maps/NorthAmerica.png";
import blackSea from "../../../resources/maps/BlackSea.png";
import africa from "../../../resources/maps/Africa.png";
import asia from "../../../resources/maps/Asia.png";
import { GameMapType } from "../../core/game/Game";
@@ -24,6 +25,8 @@ export function getMapsImage(map: GameMapType): string {
return blackSea;
case GameMapType.Africa:
return africa;
case GameMapType.Asia:
return asia;
default:
return "";
}