diff --git a/src/com/uulm/marvelous/gamelibrary/IntVector2.java b/src/uulm/teamname/marvelous/gamelibrary/IntVector2.java similarity index 99% rename from src/com/uulm/marvelous/gamelibrary/IntVector2.java rename to src/uulm/teamname/marvelous/gamelibrary/IntVector2.java index ea151d7..0914760 100644 --- a/src/com/uulm/marvelous/gamelibrary/IntVector2.java +++ b/src/uulm/teamname/marvelous/gamelibrary/IntVector2.java @@ -1,4 +1,4 @@ -package com.uulm.marvelous.gamelibrary; +package uulm.teamname.marvelous.gamelibrary; import java.io.Serializable; import java.util.Objects; diff --git a/src/com/uulm/marvelous/gamelibrary/entities/Character.java b/src/uulm/teamname/marvelous/gamelibrary/entities/Character.java similarity index 94% rename from src/com/uulm/marvelous/gamelibrary/entities/Character.java rename to src/uulm/teamname/marvelous/gamelibrary/entities/Character.java index 0c29711..7d71c8b 100644 --- a/src/com/uulm/marvelous/gamelibrary/entities/Character.java +++ b/src/uulm/teamname/marvelous/gamelibrary/entities/Character.java @@ -1,6 +1,6 @@ -package com.uulm.marvelous.gamelibrary.entities; +package uulm.teamname.marvelous.gamelibrary.entities; -import com.uulm.marvelous.gamelibrary.IntVector2; +import uulm.teamname.marvelous.gamelibrary.IntVector2; /** Represents a playable character inside a match. */ diff --git a/src/com/uulm/marvelous/gamelibrary/entities/Entity.java b/src/uulm/teamname/marvelous/gamelibrary/entities/Entity.java similarity index 89% rename from src/com/uulm/marvelous/gamelibrary/entities/Entity.java rename to src/uulm/teamname/marvelous/gamelibrary/entities/Entity.java index bdccf5a..68e7f5f 100644 --- a/src/com/uulm/marvelous/gamelibrary/entities/Entity.java +++ b/src/uulm/teamname/marvelous/gamelibrary/entities/Entity.java @@ -1,6 +1,6 @@ -package com.uulm.marvelous.gamelibrary.entities; +package uulm.teamname.marvelous.gamelibrary.entities; -import com.uulm.marvelous.gamelibrary.IntVector2; +import uulm.teamname.marvelous.gamelibrary.IntVector2; /** Represents an abstract entity. */ diff --git a/src/com/uulm/marvelous/gamelibrary/entities/EntityID.java b/src/uulm/teamname/marvelous/gamelibrary/entities/EntityID.java similarity index 95% rename from src/com/uulm/marvelous/gamelibrary/entities/EntityID.java rename to src/uulm/teamname/marvelous/gamelibrary/entities/EntityID.java index 98c5723..b7ba74c 100644 --- a/src/com/uulm/marvelous/gamelibrary/entities/EntityID.java +++ b/src/uulm/teamname/marvelous/gamelibrary/entities/EntityID.java @@ -1,4 +1,4 @@ -package com.uulm.marvelous.gamelibrary.entities; +package uulm.teamname.marvelous.gamelibrary.entities; /** Represents a distinct identification for every {@link Entity} in a game. */ diff --git a/src/com/uulm/marvelous/gamelibrary/entities/EntityType.java b/src/uulm/teamname/marvelous/gamelibrary/entities/EntityType.java similarity index 86% rename from src/com/uulm/marvelous/gamelibrary/entities/EntityType.java rename to src/uulm/teamname/marvelous/gamelibrary/entities/EntityType.java index a7df553..b8d0612 100644 --- a/src/com/uulm/marvelous/gamelibrary/entities/EntityType.java +++ b/src/uulm/teamname/marvelous/gamelibrary/entities/EntityType.java @@ -1,4 +1,4 @@ -package com.uulm.marvelous.gamelibrary.entities; +package uulm.teamname.marvelous.gamelibrary.entities; /** Specifies the type of an {@link Entity}. */ diff --git a/src/com/uulm/marvelous/gamelibrary/entities/InfinityStone.java b/src/uulm/teamname/marvelous/gamelibrary/entities/InfinityStone.java similarity index 84% rename from src/com/uulm/marvelous/gamelibrary/entities/InfinityStone.java rename to src/uulm/teamname/marvelous/gamelibrary/entities/InfinityStone.java index 34702e2..0bfe215 100644 --- a/src/com/uulm/marvelous/gamelibrary/entities/InfinityStone.java +++ b/src/uulm/teamname/marvelous/gamelibrary/entities/InfinityStone.java @@ -1,6 +1,6 @@ -package com.uulm.marvelous.gamelibrary.entities; +package uulm.teamname.marvelous.gamelibrary.entities; -import com.uulm.marvelous.gamelibrary.IntVector2; +import uulm.teamname.marvelous.gamelibrary.IntVector2; /** Represents an infinity stone {@link Entity}. Can only exist on the map. */ diff --git a/src/com/uulm/marvelous/gamelibrary/entities/Inventory.java b/src/uulm/teamname/marvelous/gamelibrary/entities/Inventory.java similarity index 97% rename from src/com/uulm/marvelous/gamelibrary/entities/Inventory.java rename to src/uulm/teamname/marvelous/gamelibrary/entities/Inventory.java index a2cb00d..a5f132c 100644 --- a/src/com/uulm/marvelous/gamelibrary/entities/Inventory.java +++ b/src/uulm/teamname/marvelous/gamelibrary/entities/Inventory.java @@ -1,4 +1,4 @@ -package com.uulm.marvelous.gamelibrary.entities; +package uulm.teamname.marvelous.gamelibrary.entities; import java.util.ArrayList; import java.util.HashSet; diff --git a/src/com/uulm/marvelous/gamelibrary/entities/NPC.java b/src/uulm/teamname/marvelous/gamelibrary/entities/NPC.java similarity index 88% rename from src/com/uulm/marvelous/gamelibrary/entities/NPC.java rename to src/uulm/teamname/marvelous/gamelibrary/entities/NPC.java index 541ac21..1b1e854 100644 --- a/src/com/uulm/marvelous/gamelibrary/entities/NPC.java +++ b/src/uulm/teamname/marvelous/gamelibrary/entities/NPC.java @@ -1,6 +1,6 @@ -package com.uulm.marvelous.gamelibrary.entities; +package uulm.teamname.marvelous.gamelibrary.entities; -import com.uulm.marvelous.gamelibrary.IntVector2; +import uulm.teamname.marvelous.gamelibrary.IntVector2; import java.util.ArrayList; diff --git a/src/com/uulm/marvelous/gamelibrary/entities/NPCType.java b/src/uulm/teamname/marvelous/gamelibrary/entities/NPCType.java similarity index 79% rename from src/com/uulm/marvelous/gamelibrary/entities/NPCType.java rename to src/uulm/teamname/marvelous/gamelibrary/entities/NPCType.java index 0e91bae..a9ec4fc 100644 --- a/src/com/uulm/marvelous/gamelibrary/entities/NPCType.java +++ b/src/uulm/teamname/marvelous/gamelibrary/entities/NPCType.java @@ -1,4 +1,4 @@ -package com.uulm.marvelous.gamelibrary.entities; +package uulm.teamname.marvelous.gamelibrary.entities; /** Specifies the type of an {@link NPC}. */ diff --git a/src/com/uulm/marvelous/gamelibrary/entities/Rock.java b/src/uulm/teamname/marvelous/gamelibrary/entities/Rock.java similarity index 86% rename from src/com/uulm/marvelous/gamelibrary/entities/Rock.java rename to src/uulm/teamname/marvelous/gamelibrary/entities/Rock.java index 58f830c..e95cd8e 100644 --- a/src/com/uulm/marvelous/gamelibrary/entities/Rock.java +++ b/src/uulm/teamname/marvelous/gamelibrary/entities/Rock.java @@ -1,6 +1,6 @@ -package com.uulm.marvelous.gamelibrary.entities; +package uulm.teamname.marvelous.gamelibrary.entities; -import com.uulm.marvelous.gamelibrary.IntVector2; +import uulm.teamname.marvelous.gamelibrary.IntVector2; /** Represents a rock entity on the map. */ diff --git a/src/com/uulm/marvelous/gamelibrary/entities/Stat.java b/src/uulm/teamname/marvelous/gamelibrary/entities/Stat.java similarity index 94% rename from src/com/uulm/marvelous/gamelibrary/entities/Stat.java rename to src/uulm/teamname/marvelous/gamelibrary/entities/Stat.java index 1b8d907..197566d 100644 --- a/src/com/uulm/marvelous/gamelibrary/entities/Stat.java +++ b/src/uulm/teamname/marvelous/gamelibrary/entities/Stat.java @@ -1,4 +1,4 @@ -package com.uulm.marvelous.gamelibrary.entities; +package uulm.teamname.marvelous.gamelibrary.entities; /** Represents a stat property of a {@link Character}. */ diff --git a/src/com/uulm/marvelous/gamelibrary/entities/StatType.java b/src/uulm/teamname/marvelous/gamelibrary/entities/StatType.java similarity index 83% rename from src/com/uulm/marvelous/gamelibrary/entities/StatType.java rename to src/uulm/teamname/marvelous/gamelibrary/entities/StatType.java index 3ea103e..7186699 100644 --- a/src/com/uulm/marvelous/gamelibrary/entities/StatType.java +++ b/src/uulm/teamname/marvelous/gamelibrary/entities/StatType.java @@ -1,4 +1,4 @@ -package com.uulm.marvelous.gamelibrary.entities; +package uulm.teamname.marvelous.gamelibrary.entities; /** Specifies the type of a {@link Stat}. */ diff --git a/src/com/uulm/marvelous/gamelibrary/entities/StoneType.java b/src/uulm/teamname/marvelous/gamelibrary/entities/StoneType.java similarity index 76% rename from src/com/uulm/marvelous/gamelibrary/entities/StoneType.java rename to src/uulm/teamname/marvelous/gamelibrary/entities/StoneType.java index 157151e..f4e4c9c 100644 --- a/src/com/uulm/marvelous/gamelibrary/entities/StoneType.java +++ b/src/uulm/teamname/marvelous/gamelibrary/entities/StoneType.java @@ -1,4 +1,4 @@ -package com.uulm.marvelous.gamelibrary.entities; +package uulm.teamname.marvelous.gamelibrary.entities; /** Specifies the type of an {@link InfinityStone}. */ diff --git a/src/com/uulm/marvelous/gamelibrary/json/JSON.java b/src/uulm/teamname/marvelous/gamelibrary/json/JSON.java similarity index 94% rename from src/com/uulm/marvelous/gamelibrary/json/JSON.java rename to src/uulm/teamname/marvelous/gamelibrary/json/JSON.java index fe05070..3103439 100644 --- a/src/com/uulm/marvelous/gamelibrary/json/JSON.java +++ b/src/uulm/teamname/marvelous/gamelibrary/json/JSON.java @@ -1,4 +1,4 @@ -package com.uulm.marvelous.gamelibrary.json; +package uulm.teamname.marvelous.gamelibrary.json; import jdk.jshell.spi.ExecutionControl; diff --git a/src/com/uulm/marvelous/gamelibrary/json/MessageStructure.java b/src/uulm/teamname/marvelous/gamelibrary/json/MessageStructure.java similarity index 84% rename from src/com/uulm/marvelous/gamelibrary/json/MessageStructure.java rename to src/uulm/teamname/marvelous/gamelibrary/json/MessageStructure.java index ae5feb1..5b0e8c4 100644 --- a/src/com/uulm/marvelous/gamelibrary/json/MessageStructure.java +++ b/src/uulm/teamname/marvelous/gamelibrary/json/MessageStructure.java @@ -1,6 +1,6 @@ -package com.uulm.marvelous.gamelibrary.json; +package uulm.teamname.marvelous.gamelibrary.json; -import com.uulm.marvelous.gamelibrary.events.Event; +import uulm.teamname.marvelous.gamelibrary.events.Event; import java.util.HashMap;