This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package pl.warlander.terraingen.util; | |
import java.util.Random; | |
public class FastRandom extends Random { | |
private long seed; | |
public FastRandom(long seed) { | |
this.seed = seed; |