mirror of
https://github.com/curioustorvald/Terrarum.git
synced 2026-06-11 11:04:05 +09:00
20 lines
370 B
Kotlin
20 lines
370 B
Kotlin
package net.torvald.terrarum
|
|
|
|
open class MusicStreamer {
|
|
|
|
open fun update(ingameInstance: IngameInstance, delta: Float) {
|
|
|
|
}
|
|
|
|
// protected var musicState = 0 // 0: disabled, 1: playing, 2: waiting
|
|
// protected var intermissionAkku = 0f
|
|
// protected var intermissionLength = 1f
|
|
// protected var musicFired = false
|
|
|
|
|
|
open fun dispose() {
|
|
|
|
}
|
|
|
|
}
|