- added music/sfc subsystem\n- added basic audio\n- added music/sound test screen\n- added some basic vscode tasks

This commit is contained in:
2026-02-16 15:10:53 +01:00
parent 3dc28849c4
commit 9fff21826b
14 changed files with 202 additions and 7 deletions

View File

@@ -0,0 +1,5 @@
Util = {}
function Util.safeindex(array, index)
return ((index - 1 + #array) % #array) + 1
end