fix: change package path

This commit is contained in:
punchready 2021-04-29 16:45:18 +02:00
parent 47fa16b9ee
commit 90aad32b92
15 changed files with 21 additions and 21 deletions

View File

@ -1,4 +1,4 @@
package com.uulm.marvelous.gamelibrary; package uulm.teamname.marvelous.gamelibrary;
import java.io.Serializable; import java.io.Serializable;
import java.util.Objects; import java.util.Objects;

View File

@ -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. /** Represents a playable character inside a match.
*/ */

View File

@ -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. /** Represents an abstract entity.
*/ */

View File

@ -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. /** Represents a distinct identification for every {@link Entity} in a game.
*/ */

View File

@ -1,4 +1,4 @@
package com.uulm.marvelous.gamelibrary.entities; package uulm.teamname.marvelous.gamelibrary.entities;
/** Specifies the type of an {@link Entity}. /** Specifies the type of an {@link Entity}.
*/ */

View File

@ -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. /** Represents an infinity stone {@link Entity}. Can only exist on the map.
*/ */

View File

@ -1,4 +1,4 @@
package com.uulm.marvelous.gamelibrary.entities; package uulm.teamname.marvelous.gamelibrary.entities;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.HashSet; import java.util.HashSet;

View File

@ -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; import java.util.ArrayList;

View File

@ -1,4 +1,4 @@
package com.uulm.marvelous.gamelibrary.entities; package uulm.teamname.marvelous.gamelibrary.entities;
/** Specifies the type of an {@link NPC}. /** Specifies the type of an {@link NPC}.
*/ */

View File

@ -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. /** Represents a rock entity on the map.
*/ */

View File

@ -1,4 +1,4 @@
package com.uulm.marvelous.gamelibrary.entities; package uulm.teamname.marvelous.gamelibrary.entities;
/** Represents a stat property of a {@link Character}. /** Represents a stat property of a {@link Character}.
*/ */

View File

@ -1,4 +1,4 @@
package com.uulm.marvelous.gamelibrary.entities; package uulm.teamname.marvelous.gamelibrary.entities;
/** Specifies the type of a {@link Stat}. /** Specifies the type of a {@link Stat}.
*/ */

View File

@ -1,4 +1,4 @@
package com.uulm.marvelous.gamelibrary.entities; package uulm.teamname.marvelous.gamelibrary.entities;
/** Specifies the type of an {@link InfinityStone}. /** Specifies the type of an {@link InfinityStone}.
*/ */

View File

@ -1,4 +1,4 @@
package com.uulm.marvelous.gamelibrary.json; package uulm.teamname.marvelous.gamelibrary.json;
import jdk.jshell.spi.ExecutionControl; import jdk.jshell.spi.ExecutionControl;

View File

@ -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; import java.util.HashMap;