Kotlin 2.0 migration

This commit is contained in:
minjaesong
2024-07-05 01:25:36 +09:00
parent 69571b6a3f
commit 68ed16aa5a
37 changed files with 161 additions and 386 deletions

View File

@@ -0,0 +1,19 @@
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() {
}
}