Method: IndicatorWindow#initialize
- Defined in:
- lib/profanity_fe/indicator_window.rb
#initialize(*args) ⇒ IndicatorWindow
Returns a new instance of IndicatorWindow.
16 17 18 19 20 21 22 23 |
# File 'lib/profanity_fe/indicator_window.rb', line 16 def initialize(*args) @fg = [ '444444', 'ffff00' ] @bg = [ nil, nil ] @label = '*' @value = nil @@list.push(self) super(*args) end |