diff --git a/core/src/com/dungeoncrawler/Dungeon.java b/core/src/com/dungeoncrawler/Dungeon.java index 93d8ab8..51a8f3b 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 src.com.dungeoncrawler; +package com.dungeoncrawler; import com.dungeoncrawler.entities.Player; diff --git a/core/src/com/dungeoncrawler/Entity.java b/core/src/com/dungeoncrawler/Entity.java index 5eb4b03..082bae4 100644 --- a/core/src/com/dungeoncrawler/Entity.java +++ b/core/src/com/dungeoncrawler/Entity.java @@ -1,4 +1,4 @@ -package src.com.dungeoncrawler; +package com.dungeoncrawler; public abstract class Entity { diff --git a/core/src/com/dungeoncrawler/Inventory.java b/core/src/com/dungeoncrawler/Inventory.java index 98b9193..ba6ebc3 100644 --- a/core/src/com/dungeoncrawler/Inventory.java +++ b/core/src/com/dungeoncrawler/Inventory.java @@ -1,4 +1,4 @@ -package src.com.dungeoncrawler; +package com.dungeoncrawler; public class Inventory { diff --git a/core/src/com/dungeoncrawler/Item.java b/core/src/com/dungeoncrawler/Item.java index 93f4ec6..e5404fa 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 src.com.dungeoncrawler; +package com.dungeoncrawler; /** * diff --git a/core/src/com/dungeoncrawler/ItemContainer.java b/core/src/com/dungeoncrawler/ItemContainer.java index a137856..d515f01 100644 --- a/core/src/com/dungeoncrawler/ItemContainer.java +++ b/core/src/com/dungeoncrawler/ItemContainer.java @@ -3,10 +3,9 @@ * To change this template file, choose Tools | Templates * and open the template in the editor. */ -package src.com.dungeoncrawler; +package com.dungeoncrawler; -//import com.dungeoncrawler.items.*; -class Item{} +import com.dungeoncrawler.items.*; /** * * @author jonathan diff --git a/core/src/com/dungeoncrawler/Level.java b/core/src/com/dungeoncrawler/Level.java index 31ef5d5..8429aba 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 src.com.dungeoncrawler; +package com.dungeoncrawler; /** * diff --git a/core/src/com/dungeoncrawler/Main.java b/core/src/com/dungeoncrawler/Main.java index 5a482d6..0b9e642 100644 --- a/core/src/com/dungeoncrawler/Main.java +++ b/core/src/com/dungeoncrawler/Main.java @@ -1,4 +1,4 @@ -package src.com.dungeoncrawler; +package 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 25aa242..1a5d582 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 src.com.dungeoncrawler; +package 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 a2df7a8..6612fdc 100644 --- a/core/src/com/dungeoncrawler/entities/Archer.java +++ b/core/src/com/dungeoncrawler/entities/Archer.java @@ -1,4 +1,4 @@ -package src.com.dungeoncrawler.entities; +package 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 13a04e4..36c25b9 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 src.com.dungeoncrawler.entities; +package 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 3f131e6..473c2ee 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 src.com.dungeoncrawler.entities; +package 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 bbf46f5..bafebba 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 src.com.dungeoncrawler.items; +package 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 be9d881..79af380 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 src.com.dungeoncrawler.items; +package 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 97a6138..4992619 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 src.com.dungeoncrawler.items; +package com.dungeoncrawler.items; import com.dungeoncrawler.Item;