UNPKG

@natewilcox/tic-tac-toe-shared

Version:

A shared library for a multiplayer Tic Tac Toe game, providing common components and utilities used by both the client-side and server-side applications.

9 lines (8 loc) 202 B
import type { Schema } from "@colyseus/schema"; export interface IPlayerState extends Schema { isCPU: boolean; client: any; name: string; offerRematch: boolean; subscription: any; }