mirror of
https://github.com/curioustorvald/Terrarum.git
synced 2026-06-11 02:54:04 +09:00
Former-commit-id: 81e6d836f5f1e6490027d38146a32d404cf9ce3e Former-commit-id: af6557340f9cd0ea0b67eb7a8825aeffe75f9d82
9 lines
190 B
Kotlin
9 lines
190 B
Kotlin
package net.torvald.terrarum.gameworld
|
|
|
|
/**
|
|
* Created by minjaesong on 16-08-06.
|
|
*/
|
|
object FluidCodex {
|
|
const val FLUID_LAVA = 0xFE.toByte()
|
|
const val FLUID_WATER = 0xFF.toByte()
|
|
} |