-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinterface_messages.rb
More file actions
26 lines (23 loc) · 1.21 KB
/
Copy pathinterface_messages.rb
File metadata and controls
26 lines (23 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
module InterfaceMessages
LIMITER_END = '╚══════════════════════════════════════════════════════════════╝'.freeze
LIMITER_START = '╔══════════════════════════════════════════════════════════════╗'.freeze
LIMITER_MIDDLE = '╠══════════════════════════════════════════════════════════════╣'.freeze
WELCOME_MESSAGE = '⤛ Welcome to the BLACK JACK ⤜'.freeze
USER_NAME_PROMPT = 'Enter your name'.freeze
INVALID_CHOICE = 'ERROR: Invalid choice. Try again'.upcase.freeze
BLACK_JACK_MSG = 'BlackJack - you win!!!'.upcase.freeze
DRAW_MSG = 'DRAW!'.freeze
START_MENU = {
start_game: 'Start game',
quit_game: 'Quit game'
}.freeze
ACTIONS_MENU = {
skip: 'Skip',
pull_card: 'Pull card',
open_cards: 'Open cards'
}.freeze
GAME_OVER_MENU = {
try_again: 'Try again',
exit: 'Exit'
}.freeze
end