musicbox wip

This commit is contained in:
minjaesong
2024-04-15 04:27:16 +09:00
parent 9762f38868
commit 96954983f0
3 changed files with 52 additions and 11 deletions

View File

@@ -18,6 +18,9 @@ abstract class AudioBank : Disposable {
abstract val totalSizeInSamples: Long
abstract fun currentPositionInSamples(): Long
open fun sendMessage(msg: String) {}
open fun sendMessage(bits: Long) {}
abstract fun readSamples(bufferL: FloatArray, bufferR: FloatArray): Int
abstract fun reset()