RPG::AudioFile
Data class for audio files. Common to all formats (BGM, BGS, ME, SE).
Last updated
Data class for audio files. Common to all formats (BGM, BGS, ME, SE).
Last updated
module RPG
class AudioFile
def initialize(name = "", volume = 100, pitch = 100)
@name = name
@volume = volume
@pitch = pitch
end
attr_accessor :name
attr_accessor :volume
attr_accessor :pitch
end
end