Method: Display#file_notation_row

Defined in:
lib/fen/display.rb

#file_notation_rowObject



37
38
39
40
41
# File 'lib/fen/display.rb', line 37

def file_notation_row
  file_notation_row = "   "
  ChessConstants::FILE_ARRAY.each { |value| file_notation_row += "#{value}  "}
  file_notation_row += "\n"
end