class Zone

Rover class that stores rover position state

Attributes

height[RW]
width[RW]

Public Class Methods

new(size) click to toggle source
# File lib/zone.rb, line 4
def initialize(size)
  @width = size[0]
  @height = size[1]
end