class Location

Attributes

column[RW]
row[RW]

Public Class Methods

new(row, column) click to toggle source
# File lib/tic_tac_toe_vj/location.rb, line 3
def initialize(row, column)
  @row = row
  @column = column
end