From 8f5adfd7822869280f1adf487bf68f6130d236f3 Mon Sep 17 00:00:00 2001 From: Jonathan Hager Date: Wed, 1 Apr 2020 02:30:37 +0200 Subject: [PATCH] Nix neues nur eclipse gestartet --- core/src/com/dungeoncrawler/Dungeon.java | 2 +- core/src/com/dungeoncrawler/Entity.java | 2 +- core/src/com/dungeoncrawler/Inventory.java | 2 +- core/src/com/dungeoncrawler/Item.java | 2 +- core/src/com/dungeoncrawler/ItemContainer.java | 2 +- core/src/com/dungeoncrawler/Level.java | 2 +- core/src/com/dungeoncrawler/Main.java | 2 +- core/src/com/dungeoncrawler/Room.java | 2 +- core/src/com/dungeoncrawler/entities/Archer.java | 2 +- core/src/com/dungeoncrawler/entities/Player.java | 2 +- core/src/com/dungeoncrawler/entities/Swordsman.java | 2 +- core/src/com/dungeoncrawler/items/Key.java | 2 +- core/src/com/dungeoncrawler/items/Potion.java | 2 +- core/src/com/dungeoncrawler/items/Sword.java | 2 +- 14 files changed, 14 insertions(+), 14 deletions(-) diff --git a/core/src/com/dungeoncrawler/Dungeon.java b/core/src/com/dungeoncrawler/Dungeon.java index 51a8f3b..93d8ab8 100644 --- a/core/src/com/dungeoncrawler/Dungeon.java +++ b/core/src/com/dungeoncrawler/Dungeon.java @@ -3,7 +3,7 @@ * To change this template file, choose Tools | Templates * and open the template in the editor. */ -package com.dungeoncrawler; +package src.com.dungeoncrawler; import com.dungeoncrawler.entities.Player; diff --git a/core/src/com/dungeoncrawler/Entity.java b/core/src/com/dungeoncrawler/Entity.java index 082bae4..5eb4b03 100644 --- a/core/src/com/dungeoncrawler/Entity.java +++ b/core/src/com/dungeoncrawler/Entity.java @@ -1,4 +1,4 @@ -package com.dungeoncrawler; +package src.com.dungeoncrawler; public abstract class Entity { diff --git a/core/src/com/dungeoncrawler/Inventory.java b/core/src/com/dungeoncrawler/Inventory.java index ba6ebc3..98b9193 100644 --- a/core/src/com/dungeoncrawler/Inventory.java +++ b/core/src/com/dungeoncrawler/Inventory.java @@ -1,4 +1,4 @@ -package com.dungeoncrawler; +package src.com.dungeoncrawler; public class Inventory { diff --git a/core/src/com/dungeoncrawler/Item.java b/core/src/com/dungeoncrawler/Item.java index e5404fa..93f4ec6 100644 --- a/core/src/com/dungeoncrawler/Item.java +++ b/core/src/com/dungeoncrawler/Item.java @@ -3,7 +3,7 @@ * To change this template file, choose Tools | Templates * and open the template in the editor. */ -package com.dungeoncrawler; +package src.com.dungeoncrawler; /** * diff --git a/core/src/com/dungeoncrawler/ItemContainer.java b/core/src/com/dungeoncrawler/ItemContainer.java index 32f475e..a137856 100644 --- a/core/src/com/dungeoncrawler/ItemContainer.java +++ b/core/src/com/dungeoncrawler/ItemContainer.java @@ -3,7 +3,7 @@ * To change this template file, choose Tools | Templates * and open the template in the editor. */ -package com.dungeoncrawler; +package src.com.dungeoncrawler; //import com.dungeoncrawler.items.*; class Item{} diff --git a/core/src/com/dungeoncrawler/Level.java b/core/src/com/dungeoncrawler/Level.java index 8429aba..31ef5d5 100644 --- a/core/src/com/dungeoncrawler/Level.java +++ b/core/src/com/dungeoncrawler/Level.java @@ -3,7 +3,7 @@ * To change this template file, choose Tools | Templates * and open the template in the editor. */ -package com.dungeoncrawler; +package src.com.dungeoncrawler; /** * diff --git a/core/src/com/dungeoncrawler/Main.java b/core/src/com/dungeoncrawler/Main.java index 0b9e642..5a482d6 100644 --- a/core/src/com/dungeoncrawler/Main.java +++ b/core/src/com/dungeoncrawler/Main.java @@ -1,4 +1,4 @@ -package com.dungeoncrawler; +package src.com.dungeoncrawler; import com.badlogic.gdx.ApplicationAdapter; import com.badlogic.gdx.Gdx; diff --git a/core/src/com/dungeoncrawler/Room.java b/core/src/com/dungeoncrawler/Room.java index 1a5d582..25aa242 100644 --- a/core/src/com/dungeoncrawler/Room.java +++ b/core/src/com/dungeoncrawler/Room.java @@ -3,7 +3,7 @@ * To change this template file, choose Tools | Templates * and open the template in the editor. */ -package com.dungeoncrawler; +package src.com.dungeoncrawler; import com.dungeoncrawler.entities.*; diff --git a/core/src/com/dungeoncrawler/entities/Archer.java b/core/src/com/dungeoncrawler/entities/Archer.java index 6612fdc..a2df7a8 100644 --- a/core/src/com/dungeoncrawler/entities/Archer.java +++ b/core/src/com/dungeoncrawler/entities/Archer.java @@ -1,4 +1,4 @@ -package com.dungeoncrawler.entities; +package src.com.dungeoncrawler.entities; import com.dungeoncrawler.Entity; public class Archer extends Entity{ diff --git a/core/src/com/dungeoncrawler/entities/Player.java b/core/src/com/dungeoncrawler/entities/Player.java index 36c25b9..13a04e4 100644 --- a/core/src/com/dungeoncrawler/entities/Player.java +++ b/core/src/com/dungeoncrawler/entities/Player.java @@ -3,7 +3,7 @@ * To change this template file, choose Tools | Templates * and open the template in the editor. */ -package com.dungeoncrawler.entities; +package src.com.dungeoncrawler.entities; import com.dungeoncrawler.Entity; diff --git a/core/src/com/dungeoncrawler/entities/Swordsman.java b/core/src/com/dungeoncrawler/entities/Swordsman.java index 473c2ee..3f131e6 100644 --- a/core/src/com/dungeoncrawler/entities/Swordsman.java +++ b/core/src/com/dungeoncrawler/entities/Swordsman.java @@ -3,7 +3,7 @@ * To change this template file, choose Tools | Templates * and open the template in the editor. */ -package com.dungeoncrawler.entities; +package src.com.dungeoncrawler.entities; import com.dungeoncrawler.Entity; diff --git a/core/src/com/dungeoncrawler/items/Key.java b/core/src/com/dungeoncrawler/items/Key.java index bafebba..bbf46f5 100644 --- a/core/src/com/dungeoncrawler/items/Key.java +++ b/core/src/com/dungeoncrawler/items/Key.java @@ -3,7 +3,7 @@ * To change this template file, choose Tools | Templates * and open the template in the editor. */ -package com.dungeoncrawler.items; +package src.com.dungeoncrawler.items; import com.dungeoncrawler.Item; diff --git a/core/src/com/dungeoncrawler/items/Potion.java b/core/src/com/dungeoncrawler/items/Potion.java index 79af380..be9d881 100644 --- a/core/src/com/dungeoncrawler/items/Potion.java +++ b/core/src/com/dungeoncrawler/items/Potion.java @@ -3,7 +3,7 @@ * To change this template file, choose Tools | Templates * and open the template in the editor. */ -package com.dungeoncrawler.items; +package src.com.dungeoncrawler.items; import com.dungeoncrawler.Item; diff --git a/core/src/com/dungeoncrawler/items/Sword.java b/core/src/com/dungeoncrawler/items/Sword.java index 4992619..97a6138 100644 --- a/core/src/com/dungeoncrawler/items/Sword.java +++ b/core/src/com/dungeoncrawler/items/Sword.java @@ -3,7 +3,7 @@ * To change this template file, choose Tools | Templates * and open the template in the editor. */ -package com.dungeoncrawler.items; +package src.com.dungeoncrawler.items; import com.dungeoncrawler.Item;