class Core::GUI::Slider

Attributes

value[RW]

Public Class Methods

new(x, y, w, h) click to toggle source
Calls superclass method Core::GUI::Element::new
# File lib/gui/slider.rb, line 5
def initialize(x, y, w, h)
  super
  @value = 0
end