nodewords
Version:
Command line word games
14 lines (13 loc) • 356 B
JavaScript
module.exports = {
STARTING_LINE: 7,
GRID_SIZE: 15,
GAME_TITLE: 'WORDSEARCH',
GAME_INFO: 'Find the words in the grid',
GAME_INSTRUCTIONS: '(Use the arrow keys to move around, and the space key to select a letter)\n',
WORD_SPACING: ' ',
KEY_UP: 'up',
KEY_DOWN: 'down',
KEY_LEFT: 'left',
KEY_RIGHT: 'right',
KEY_SPACE: 'space'
};