Skip to content

Instantly share code, notes, and snippets.

@chimmelb
Created March 10, 2016 17:07
Show Gist options
  • Save chimmelb/872afd746b1ac0b0d678 to your computer and use it in GitHub Desktop.
Save chimmelb/872afd746b1ac0b0d678 to your computer and use it in GitHub Desktop.
app.game = {
state: {
currentTurn: 'player1'
},
player1: {
name: 'Player 1',
stacks: {
stack1: ['1'],
stack2: ['2'],
stack3: ['3'],
stack4: [],
stack5: ['5'],
}
},
player2: {
name: 'Computer',
stacks: {
stack1: ['1'],
stack2: [],
stack3: ['3'],
stack4: ['4'],
stack5: ['5'],
}
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment