class RobotsFindKitten::ThingInfo

Attributes

symbol[R]
x[R]
y[R]

Public Class Methods

new(x, y, symbol) click to toggle source
# File lib/robotsfindkitten/thing_info.rb, line 5
def initialize(x, y, symbol)
  @x = x
  @y = y
  @symbol = symbol
end