worldinfo writer

This commit is contained in:
Minjae Song
2018-10-08 01:16:29 +09:00
parent 26b81e23bb
commit 783313a4ae
6 changed files with 185 additions and 6 deletions

View File

@@ -10,8 +10,8 @@ import java.util.Random
*/
class HQRNG @JvmOverloads constructor(seed: Long = System.nanoTime()) : Random() {
private var s0: Long
private var s1: Long
var s0: Long; private set
var s1: Long; private set
constructor(s0: Long, s1: Long) : this() {
this.s0 = s0