class RuneRb::World::Point

Attributes

x[RW]

Public Class Methods

new(x, y, dir) click to toggle source
# File app/world/walking.rb, line 98
def initialize(x, y, dir)
  @x = x
  @y = y
  @dir = dir
end