class GameGrid::Coords
Attributes
x[R]
y[R]
Public Class Methods
new(args = {})
click to toggle source
# File lib/game_grid/coords.rb, line 6 def initialize(args = {}) @x = args[:x] @y = args[:y] end