diff options
Diffstat (limited to 'tmwcon/src/converter/WLKInterface.java')
-rw-r--r-- | tmwcon/src/converter/WLKInterface.java | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/tmwcon/src/converter/WLKInterface.java b/tmwcon/src/converter/WLKInterface.java deleted file mode 100644 index b9e0cb2..0000000 --- a/tmwcon/src/converter/WLKInterface.java +++ /dev/null @@ -1,29 +0,0 @@ -/* - * TMWServ to eAthena Converter (c) 2008 Jared Adams - * License: GPL, v2 or later - */ - -package converter; - -import java.io.*; - -import tiled.core.*; -import tiled.plugins.tmw.*; - -public class WLKInterface { - public WLKInterface() { - // See if the writer is available - WLKWriter.class.getName(); - } - - public void write(String name, Map map, File wlk) { - try { - wlk.createNewFile(); - WLKWriter.writeMap(map, new FileOutputStream(wlk)); - System.out.println("WLK written"); - } catch (Exception e) { - System.out.println("Prolem writing WLK file:"); - e.printStackTrace(); - } - } -} |