Class: RPG::AudioFile
- Inherits:
-
Object
- Object
- RPG::AudioFile
- Defined in:
- lib/rpg/audio_file.rb
Instance Attribute Summary collapse
-
#name ⇒ Object
Returns the value of attribute name.
-
#pitch ⇒ Object
Returns the value of attribute pitch.
-
#volume ⇒ Object
Returns the value of attribute volume.
Instance Method Summary collapse
-
#initialize(name = '', volume = 100, pitch = 100) ⇒ AudioFile
constructor
A new instance of AudioFile.
Constructor Details
#initialize(name = '', volume = 100, pitch = 100) ⇒ AudioFile
Returns a new instance of AudioFile.
3 4 5 6 7 |
# File 'lib/rpg/audio_file.rb', line 3 def initialize(name = '', volume = 100, pitch = 100) @name = name @volume = volume @pitch = pitch end |
Instance Attribute Details
#name ⇒ Object
Returns the value of attribute name.
8 9 10 |
# File 'lib/rpg/audio_file.rb', line 8 def name @name end |
#pitch ⇒ Object
Returns the value of attribute pitch.
10 11 12 |
# File 'lib/rpg/audio_file.rb', line 10 def pitch @pitch end |
#volume ⇒ Object
Returns the value of attribute volume.
9 10 11 |
# File 'lib/rpg/audio_file.rb', line 9 def volume @volume end |