Files
Terrarum/src/net/torvald/terrarum/gameworld/BlockLayer.kt
2023-10-10 03:56:02 +09:00

14 lines
302 B
Kotlin

package net.torvald.terrarum.gameworld
import com.badlogic.gdx.utils.Disposable
/**
* Created by minjaesong on 2023-10-10.
*/
interface BlockLayer : Disposable {
val bytesPerBlock: Long
fun unsafeToBytes(x: Int, y: Int): ByteArray
fun unsafeSetTile(x: Int, y: Int, bytes: ByteArray)
}