mirror of
https://github.com/openfrontio/OpenFrontIO.git
synced 2026-07-08 09:40:42 +00:00
create game runner
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user