mirror of
https://github.com/curioustorvald/Terrarum.git
synced 2026-03-13 07:06:06 +09:00
9 lines
171 B
Kotlin
9 lines
171 B
Kotlin
package net.torvald.random
|
|
|
|
/**
|
|
* Created by minjaesong on 2016-10-28.
|
|
*/
|
|
interface NoiseGenerator1D {
|
|
fun generate(seed: Long)
|
|
operator fun get(x: Int): Float
|
|
} |