combine Game & MutableGame

This commit is contained in:
evanpelle
2025-01-23 11:12:01 -08:00
committed by Evan
parent 7d15c0c065
commit de1dbff570
30 changed files with 101 additions and 101 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
import { Execution, MutableGame, Player, MutableUnit, Unit, UnitType } from "../game/Game";
import { Execution, Game, Player, MutableUnit, Unit, UnitType } from "../game/Game";
import { PathFinder } from "../pathfinding/PathFinding";
import { PathFindResultType } from "../pathfinding/AStar";
import { consolex } from "../Consolex";
@@ -14,7 +14,7 @@ export class ShellExecution implements Execution {
}
init(mg: MutableGame, ticks: number): void {
init(mg: Game, ticks: number): void {
this.pathFinder = PathFinder.Mini(mg, 2000, true, 10)
}