Combine Unit & MutableUnit

This commit is contained in:
evanpelle
2025-02-01 12:05:11 -08:00
committed by Evan
parent de1dbff570
commit 75fe718f16
13 changed files with 49 additions and 44 deletions
+2 -2
View File
@@ -1,12 +1,12 @@
import { consolex } from "../Consolex";
import { Execution, Game, Player, MutableUnit, PlayerID, UnitType } from "../game/Game";
import { Execution, Game, Player, Unit, PlayerID, UnitType } from "../game/Game";
import { TileRef } from "../game/GameMap";
export class CityExecution implements Execution {
private player: Player
private mg: Game
private city: MutableUnit
private city: Unit
private active: boolean = true
constructor(private ownerId: PlayerID, private tile: TileRef) { }