Class: GGLib::ThemeImageGroup
- Inherits:
-
Object
- Object
- GGLib::ThemeImageGroup
- Defined in:
- lib/theme.rb
Instance Attribute Summary collapse
-
#default ⇒ Object
Returns the value of attribute default.
-
#down ⇒ Object
Returns the value of attribute down.
-
#over ⇒ Object
Returns the value of attribute over.
Instance Method Summary collapse
-
#initialize(default, over, down) ⇒ ThemeImageGroup
constructor
A new instance of ThemeImageGroup.
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
#default ⇒ Object
Returns the value of attribute default.
162 163 164 |
# File 'lib/theme.rb', line 162 def default @default end |
#down ⇒ Object
Returns the value of attribute down.
162 163 164 |
# File 'lib/theme.rb', line 162 def down @down end |
#over ⇒ Object
Returns the value of attribute over.
162 163 164 |
# File 'lib/theme.rb', line 162 def over @over end |