UNPKG

277 Btext/coffeescriptView Raw
1Arena = require "../../hearts/arena"
2exports.createGame = (options={}) ->
3 arena = options.arena || new Arena()
4
5 players = [
6 arena.createPlayer()
7 arena.createPlayer()
8 arena.createPlayer()
9 arena.createPlayer()
10 ]
11
12 game = arena.createGame(players)
13
14 game
15