mirror of
https://github.com/Reuh/ubiquitousse.git
synced 2025-10-27 17:19:31 +00:00
12 lines
241 B
Lua
12 lines
241 B
Lua
-- ubiquitousse.audio
|
|
|
|
--- Audio functions.
|
|
return {
|
|
--- Loads an audio file and returns the corresponding audio object.
|
|
-- TODO: audio object doc & API
|
|
-- @impl backend
|
|
load = function(filepath) end,
|
|
|
|
-- TODO: doc
|
|
available = false
|
|
}
|