Advertisement
alestane

Untitled

Jan 16th, 2012
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.29 KB | None | 0 0
  1. local music = {}
  2.  
  3. local musicChannel = {
  4.     channel = 1
  5. }
  6.  
  7. local volume = 1
  8.  
  9. function music:Play(song)
  10.     local play = audio.play(song, musicChannel)
  11.     audio.setVolume(volume, musicChannel)
  12. end
  13.  
  14. function music:Options(event)
  15. end
  16. Runtime:addEventListener('Options', music)
  17. return music
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement