mirror of
https://github.com/PolyhedralDev/Terra.git
synced 2026-04-09 09:16:34 +00:00
Basic 3D interpolated terrain implementation
This commit is contained in:
23
src/main/java/com/dfsek/terra/Terra.java
Normal file
23
src/main/java/com/dfsek/terra/Terra.java
Normal file
@@ -0,0 +1,23 @@
|
||||
package com.dfsek.terra;
|
||||
|
||||
import org.bukkit.generator.ChunkGenerator;
|
||||
import org.bukkit.plugin.java.JavaPlugin;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
public class Terra extends JavaPlugin {
|
||||
@Override
|
||||
public void onDisable() {
|
||||
super.onDisable();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onEnable() {
|
||||
super.onEnable();
|
||||
}
|
||||
|
||||
@Override
|
||||
public @Nullable ChunkGenerator getDefaultWorldGenerator(@NotNull String worldName, @Nullable String id) {
|
||||
return new TerraChunkGenerator();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user