8 lines
157 B
Kotlin
8 lines
157 B
Kotlin
package api.regionspec.contracts
|
|
|
|
import core.game.world.map.build.DynamicRegion
|
|
|
|
interface ChunkSpecContract {
|
|
fun populateChunks(dyn: DynamicRegion)
|
|
}
|