mancala/mancala.js/src/index.ts

12 lines
470 B
TypeScript
Raw Normal View History

2022-05-04 15:04:49 +03:00
export * from './core/MancalaGame';
export * from './core/Board';
export * from './core/Pit';
export * from './core/GameRule';
2022-05-21 18:36:16 +03:00
export * from './core/HistoryItem';
2022-05-04 15:04:49 +03:00
export * from './common/CommonBoard';
export * from './common/CommonMancalaGame';
export * from './common/game_rules/GRLastStoneInBank';
export * from './common/game_rules/GRLastStoneInEmptyPit';
2022-05-21 18:36:16 +03:00
export * from './common/game_rules/GRDoubleStoneInPit';
2022-05-04 15:04:49 +03:00
export * from './common/game_rules/GRClearBoardAtEnd';