hosek skybox moved outside of basegame; moonlight impl

This commit is contained in:
minjaesong
2023-08-04 13:43:14 +09:00
parent 9fe6618cc9
commit 18631064d4
10 changed files with 43 additions and 55 deletions

View File

@@ -0,0 +1,14 @@
package net.torvald.terrarum
import net.torvald.random.HQRNG
import java.util.*
internal interface RNGConsumer {
val RNG: HQRNG
fun loadFromSave(s0: Long, s1: Long) {
RNG.setSeed(s0, s1)
}
}