class RubyTerminalGames::Hangman::Board

Constants

PLACEHOLDER

Public Class Methods

new(width: nil, height: nil) click to toggle source
Calls superclass method RubyTerminalGames::Board::new
# File lib/ruby_terminal_games/hangman/board.rb, line 6
def initialize(width: nil, height: nil)
  super
  @height = 10
end

Public Instance Methods

print_world!(game) click to toggle source

Private Instance Methods

print_exit_instruction() click to toggle source
print_placeholders(word) click to toggle source
print_wrong_guesses(guesses) click to toggle source