Class: GGLib::ThemeImageGroup

Inherits:
Object
  • Object
show all
Defined in:
lib/theme.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(default, over, down) ⇒ ThemeImageGroup

Returns a new instance of ThemeImageGroup.



163
164
165
166
167
# File 'lib/theme.rb', line 163

def initialize(default, over, down)
  @default = default
  @over = over
  @down = down
end

Instance Attribute Details

#defaultObject

Returns the value of attribute default.



162
163
164
# File 'lib/theme.rb', line 162

def default
  @default
end

#downObject

Returns the value of attribute down.



162
163
164
# File 'lib/theme.rb', line 162

def down
  @down
end

#overObject

Returns the value of attribute over.



162
163
164
# File 'lib/theme.rb', line 162

def over
  @over
end