mirror of
https://github.com/curioustorvald/Terrarum.git
synced 2026-06-13 20:14:05 +09:00
9 lines
192 B
Kotlin
9 lines
192 B
Kotlin
package net.torvald.terrarum.gameworld
|
|
|
|
/**
|
|
* Created by minjaesong on 2016-08-06.
|
|
*/
|
|
object FluidCodex {
|
|
const val FLUID_LAVA = 0xFE.toByte()
|
|
const val FLUID_WATER = 0xFF.toByte()
|
|
} |