mirror of
https://github.com/PolyhedralDev/Terra.git
synced 2026-04-11 10:16:15 +00:00
Clean up imports
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
package com.dfsek.terra.debug.gui;
|
||||
|
||||
import com.dfsek.terra.TerraWorld;
|
||||
import com.dfsek.terra.generation.TerraChunkGenerator;
|
||||
import com.dfsek.terra.biome.UserDefinedBiome;
|
||||
import com.dfsek.terra.generation.TerraChunkGenerator;
|
||||
import com.dfsek.terra.image.ImageLoader;
|
||||
import org.bukkit.Bukkit;
|
||||
import org.bukkit.entity.Player;
|
||||
@@ -18,6 +18,7 @@ public class DebugFrame extends JFrame implements ActionListener {
|
||||
private final int x;
|
||||
private final int z;
|
||||
private final BufferedImage img;
|
||||
|
||||
public DebugFrame(BufferedImage image, String s) {
|
||||
super(s);
|
||||
this.x = image.getWidth();
|
||||
|
||||
@@ -7,9 +7,11 @@ import java.awt.image.BufferedImage;
|
||||
public class DebugGUI extends Thread {
|
||||
|
||||
private final BufferedImage img;
|
||||
|
||||
public DebugGUI(BufferedImage img) {
|
||||
this.img = img;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void run() {
|
||||
DebugFrame frame = new DebugFrame(img, "Image2Map Debug GUI");
|
||||
|
||||
Reference in New Issue
Block a user