Plumb queue next+previous through to Lua, incl. with stubs and docs.

This commit is contained in:
Robin Howard
2024-01-23 02:30:18 +00:00
committed by Robin Howard
parent 9b63f14cb8
commit 3f1fadbeef
4 changed files with 32 additions and 6 deletions
+6
View File
@@ -19,4 +19,10 @@ queue.replay = types.Property
-- @see types.Property
queue.random = types.Property
--- Moves forward in the play queue, looping back around to the beginning if repeat is on.
function queue.next() end
--- Moves backward in the play queue, looping back around to the end if repeat is on.
function queue.previous() end
return queue