9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2025-12-26 18:49:06 +00:00
This commit is contained in:
Daniel Mills
2019-10-12 02:52:14 -04:00
parent 37e4fd55d3
commit da464f99d4
14 changed files with 591 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
package ninja.bytecode.iris;
import org.bukkit.generator.ChunkGenerator;
import org.bukkit.plugin.java.JavaPlugin;
import ninja.bytecode.shuriken.execution.TaskExecutor;
public class Iris extends JavaPlugin
{
public static TaskExecutor executor;
public void onEnable()
{
executor = new TaskExecutor(-1, Thread.MIN_PRIORITY, "Iris Generator");
}
@Override
public ChunkGenerator getDefaultWorldGenerator(String worldName, String id)
{
return new IrisGenerator();
}
}