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
@@ -9,7 +9,7 @@ import { UsernameInput } from "./UsernameInput";
import { HostLobbyModal as HostPrivateLobbyModal } from "./HostLobbyModal";
import { JoinPrivateLobbyModal } from "./JoinPrivateLobbyModal";
import { SinglePlayerModal } from "./SinglePlayerModal";
import { PlayerView } from "../core/GameView"
import { PlayerView } from "../core/game/GameView"
export class PauseGameEvent implements GameEvent {
constructor(public readonly paused: boolean) { }