implementing water sim but not actually working

This commit is contained in:
Minjae Song
2018-12-13 04:45:09 +09:00
parent 1f1d6f1eda
commit 05a8f47006
6 changed files with 230 additions and 51 deletions

View File

@@ -1,13 +1,15 @@
package net.torvald.terrarum.blockproperties
import net.torvald.terrarum.gameworld.FluidType
/**
* Created by minjaesong on 2016-08-06.
*/
object Fluid {
val NULL = 0
val NULL = FluidType(0)
val WATER = 1
val STATIC_WATER = -1
val WATER = FluidType(1)
val STATIC_WATER = FluidType(-1)
}