move Game updates to GameUpdate.ts

This commit is contained in:
evanpelle
2025-02-01 12:05:11 -08:00
committed by Evan
parent 375326ed64
commit 4bbb63fd48
31 changed files with 202 additions and 180 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
import { createGameRunner, GameRunner } from "../GameRunner";
import { GameUpdateViewData } from "../GameView";
import { GameUpdateViewData } from '../game/GameUpdates';
import {
MainThreadMessage,
WorkerMessage,
+1 -1
View File
@@ -1,5 +1,5 @@
import { PlayerActions, PlayerID, PlayerInfo, PlayerProfile } from "../game/Game";
import { GameUpdateViewData } from "../GameView";
import { GameUpdateViewData } from '../game/GameUpdates';
import { GameConfig, GameID, Turn } from "../Schemas";
import { generateID } from "../Util";
import { WorkerMessage } from "./WorkerMessages";
+1 -1
View File
@@ -1,4 +1,4 @@
import { GameUpdateViewData } from "../GameView";
import { GameUpdateViewData } from '../game/GameUpdates';
import { GameConfig, GameID, Turn } from "../Schemas";
import { PlayerActions, PlayerID, PlayerProfile } from "../game/Game";