From fda96a5acb65c3b651dee5235a7f70e049f82bd5 Mon Sep 17 00:00:00 2001 From: David Hermann Date: Mon, 6 Feb 2023 10:41:41 +0100 Subject: [PATCH] refactoring: Deleted CreateLocations --- .../org/bitbiome/classes/CreateLocations.java | 24 ------------------- 1 file changed, 24 deletions(-) delete mode 100644 src/main/java/org/bitbiome/classes/CreateLocations.java diff --git a/src/main/java/org/bitbiome/classes/CreateLocations.java b/src/main/java/org/bitbiome/classes/CreateLocations.java deleted file mode 100644 index ed237a1..0000000 --- a/src/main/java/org/bitbiome/classes/CreateLocations.java +++ /dev/null @@ -1,24 +0,0 @@ -package org.bitbiome.classes; - -import org.bitbiome.entities.Item; -import org.bitbiome.entities.Location; -import org.bitbiome.entities.Mob; - -import java.util.ArrayList; - -public class CreateLocations { - - public static Location createForest() { - ArrayList items = new ArrayList<>(); - ArrayList mobs = new ArrayList<>(); - String name = "Wald"; - return new Location(name, mobs, items); - } - - public static Location createBeach() { - ArrayList items = new ArrayList<>(); - ArrayList mobs = new ArrayList<>(); - String name = "Strand"; - return new Location(name, mobs, items); - } -}