10 lines
190 B
Java
10 lines
190 B
Java
|
package ttftcuts.atg.api;
|
||
|
|
||
|
import java.util.Random;
|
||
|
|
||
|
public interface IGenMod {
|
||
|
public int modify( int height, Random random, double rawHeight );
|
||
|
|
||
|
public double noiseFactor();
|
||
|
}
|