class Gosuplus::Vec2
Attributes
x[RW]
y[RW]
Public Class Methods
new(x, y)
click to toggle source
# File lib/Gosuplus/vec2.rb, line 5 def initialize(x, y) @x, @y = x, y end