19 lines
403 B
TypeScript
19 lines
403 B
TypeScript
/**
|
|
* Re-export tic-tac-toe game module from boardgame-core
|
|
* This provides a convenient import path within sample-game
|
|
*/
|
|
export {
|
|
registry,
|
|
prompts,
|
|
start,
|
|
createInitialState,
|
|
isCellOccupied,
|
|
hasWinningLine,
|
|
checkWinner,
|
|
placePiece,
|
|
type TicTacToePart,
|
|
type TicTacToeState,
|
|
type TicTacToeGame,
|
|
type PlayerType,
|
|
type WinnerType,
|
|
} from "boardgame-core/samples/tic-tac-toe"; |