Last active
October 10, 2020 11:30
-
-
Save MCarlomagno/fbb55542e48f41ba44207d2178f3f9f9 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
var startGame = () => { | |
var options = { | |
arena: { | |
arena: mk.arenas.types.THRONE_ROOM | |
}, | |
fighters: [{ name: 'Subzero' }, { name: 'Kano' }], | |
gameType: 'multiplayer' | |
}; | |
function startNewGame() { | |
mk.start(options); | |
} | |
startNewGame(); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment