import { MancalaGame } from "mancala.js"; import { UserConnectionInfo } from "./UserConnectionInfo"; export interface Game { id: string; mancalaGame: MancalaGame; gameUsersConnectionInfo: GameUsersConnectionInfo; spectatorIds: string[]; } export interface GameUsersConnectionInfo { user1ConnectionInfo: UserConnectionInfo; user2ConnectionInfo: UserConnectionInfo; }