From fc558e20cce05330c4e46e2437df5c8b26c5bf09 Mon Sep 17 00:00:00 2001 From: Halit Aksoy Date: Wed, 4 May 2022 15:04:49 +0300 Subject: [PATCH] update index --- src/index.ts | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/index.ts b/src/index.ts index e69de29..0d4b07c 100644 --- a/src/index.ts +++ b/src/index.ts @@ -0,0 +1,9 @@ +export * from './core/MancalaGame'; +export * from './core/Board'; +export * from './core/Pit'; +export * from './core/GameRule'; +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/GRClearBoardAtEnd';