class Element
Attributes
bg_rect[RW]
dur[RW]
dur_dst[RW]
txt[RW]
txt_bld[RW]
txt_dst[RW]
txt_sel[RW]
txt_sel_bld[RW]
txt_src[RW]
Public Class Methods
new()
click to toggle source
# File lib/akane_sound/class.element.rb, line 4 def initialize @txt = nil @dur = nil end
Public Instance Methods
destroy()
click to toggle source
# File lib/akane_sound/class.element.rb, line 9 def destroy @txt.destroy if @txt @dur.destroy if @dur end