8 lines
215 B
Ruby
8 lines
215 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Music
|
|
MUSIC = {
|
|
music1: SoundInstance.new({ path: 'music/music1.ogg', looping: true }),
|
|
music2: SoundInstance.new({ path: 'music/music2.ogg', looping: true })
|
|
}
|
|
end
|