build worker messaging system

This commit is contained in:
evanpelle
2025-02-01 12:05:11 -08:00
committed by Evan
parent b260aa0441
commit 8a320f184c
8 changed files with 226 additions and 60 deletions
-4
View File
@@ -361,10 +361,6 @@ export class TileEvent implements GameEvent {
constructor(public readonly tile: Tile, public readonly borderOnlyChange: boolean = false) { }
}
export class PlayerEvent implements GameEvent {
constructor(public readonly player: Player) { }
}
export class UnitEvent implements GameEvent {
constructor(public readonly unit: Unit, public oldTile: Tile) { }
}