Revert "refactored PlayerModel to Player"

This reverts commit 68c2e3a8d9.
This commit is contained in:
2025-12-04 18:59:06 +05:30
parent 68c2e3a8d9
commit 650d7b7ed6
6 changed files with 12 additions and 12 deletions

View File

@@ -1,4 +1,4 @@
export interface Player {
export interface PlayerModel {
user_id: string;
username: string;
index: number;
@@ -20,7 +20,7 @@ export interface GameState {
turn: number;
winner: string | null;
gameOver: boolean;
players: Player[];
players: PlayerModel[];
metadata: Record<string, any>;
}