create game runner

This commit is contained in:
Evan
2025-01-02 13:25:36 -08:00
parent 8a4644637a
commit 8443095d89
10 changed files with 100 additions and 32 deletions
+26
View File
@@ -0,0 +1,26 @@
import { Cell, PlayerID } from "./game/Game";
import { GameUpdate } from "./GameRunner";
export class TileView {
}
export class PlayerView {
}
export class GameView {
public update(gu: GameUpdate) {
}
tile(cell: Cell): TileView {
return null
}
player(id: PlayerID): PlayerView {
return null
}
}