Moved mods/ra/lua to mods/common/lua

This commit is contained in:
ScottNZ
2013-12-18 16:09:44 +13:00
parent 23cb4defa3
commit a4f3caa6e7
13 changed files with 36 additions and 36 deletions

20
mods/common/lua/media.lua Normal file
View File

@@ -0,0 +1,20 @@
Media = { }
Media.PlaySpeechNotification = function(notification, player)
Internal.PlaySpeechNotification(player, notification)
end
Media.PlaySoundNotification = function(notification, player)
Internal.PlaySoundNotification(player, notification)
end
Media.PlayRandomMusic = function()
Internal.PlayRandomMusic()
end
Media.PlayMovieFullscreen = function(movie, onComplete)
if onComplete == nil then
onComplete = function() end
end
Internal.PlayMovieFullscreen(movie, onComplete)
end