Created
March 10, 2016 17:07
-
-
Save chimmelb/872afd746b1ac0b0d678 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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