mancala/mancala.js/src/index.ts
2024-03-24 02:47:01 +03:00

12 lines
470 B
TypeScript

export * from './core/MancalaGame';
export * from './core/Board';
export * from './core/Pit';
export * from './core/GameRule';
export * from './core/HistoryItem';
export * from './common/CommonBoard';
export * from './common/CommonMancalaGame';
export * from './common/game_rules/GRLastStoneInBank';
export * from './common/game_rules/GRLastStoneInEmptyPit';
export * from './common/game_rules/GRDoubleStoneInPit';
export * from './common/game_rules/GRClearBoardAtEnd';