diff --git a/src/main/java/turniplabs/halplibe/helper/BlockCoords.java b/src/main/java/turniplabs/halplibe/helper/BlockCoords.java deleted file mode 100644 index 68b6367..0000000 --- a/src/main/java/turniplabs/halplibe/helper/BlockCoords.java +++ /dev/null @@ -1,19 +0,0 @@ -package turniplabs.halplibe.helper; - -/** - * @deprecated Class is being relocated to the turniplabs.halplibe.util package - */ -@Deprecated -public class BlockCoords { - public static boolean[][] usedCoordinates = turniplabs.halplibe.util.BlockCoords.usedCoordinates; - - public static int[] nextCoords() { - return turniplabs.halplibe.util.BlockCoords.nextCoords(); - } - public static void markIDUsed(int x, int y){ - turniplabs.halplibe.util.BlockCoords.markIDUsed(x, y); - } - public static void markSectionUsed(int[] topLeft, int[] bottomRight){ - turniplabs.halplibe.util.BlockCoords.markSectionUsed(topLeft, bottomRight); - } -} diff --git a/src/main/java/turniplabs/halplibe/helper/ItemCoords.java b/src/main/java/turniplabs/halplibe/helper/ItemCoords.java deleted file mode 100644 index df4cda8..0000000 --- a/src/main/java/turniplabs/halplibe/helper/ItemCoords.java +++ /dev/null @@ -1,19 +0,0 @@ -package turniplabs.halplibe.helper; - -/** - * @deprecated Class is being relocated to the turniplabs.halplibe.util package - */ -@Deprecated -public class ItemCoords { - public static boolean[][] usedCoordinates = turniplabs.halplibe.util.ItemCoords.usedCoordinates; - - public static int[] nextCoords() { - return turniplabs.halplibe.util.ItemCoords.nextCoords(); - } - public static void markIDUsed(int x, int y){ - turniplabs.halplibe.util.ItemCoords.markIDUsed(x, y); - } - public static void markSectionUsed(int[] topLeft, int[] bottomRight){ - turniplabs.halplibe.util.ItemCoords.markSectionUsed(topLeft, bottomRight); - } -}