Skip to content

Commit

Permalink
reintroduce InitializeGame in boardgame.io/core
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolodavis committed Oct 8, 2019
1 parent 18d9be5 commit bed18ce
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions packages/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,17 @@
* https://opensource.org/licenses/MIT.
*/

import { INVALID_MOVE } from '../src/core/reducer.js';
import {
Pass,
import { INVALID_MOVE } from '../src/core/reducer';
import { Pass, ActivePlayers, TurnOrder, Stage } from '../src/core/turn-order';
import { InitializeGame } from '../src/core/initialize';
import { PlayerView } from '../src/core/player-view';

export {
ActivePlayers,
TurnOrder,
Stage,
} from '../src/core/turn-order.js';
import { PlayerView } from '../src/core/player-view.js';

export { ActivePlayers, Stage, TurnOrder, Pass, PlayerView, INVALID_MOVE };
TurnOrder,
Pass,
PlayerView,
InitializeGame,
INVALID_MOVE,
};

0 comments on commit bed18ce

Please sign in to comment.