Define user instructions #3

master
javier-barea 4 years ago
parent c58b4b19a6
commit 5a6367079a

@ -0,0 +1,16 @@
import { GameState } from './util.js'
/**
* Enum of all possible instructions.
* @type {object}
*/
const instructions = {
[GameState.ChoosingNumberOfShips]: 'Select the number of ships ',
[GameState.PlayerSetup]: 'Place your ships on the grid',
[GameState.PromptPlayerChange]: "It is your opponent's turn",
[GameState.PlayerTurn]: 'Select a cell to fire a missile',
[GameState.PlayerVictory]: 'You won!'
// and so on
}
export { instructions }
Loading…
Cancel
Save