Move Entity interfaces into a spi (Service Providing Interfaces) package.
This commit is contained in:
parent
17aafe11f9
commit
dda0fb8313
|
@ -4,6 +4,8 @@ import java.awt.Color;
|
|||
import java.awt.Graphics2D;
|
||||
import java.awt.image.BufferedImage;
|
||||
|
||||
import de.teamteamteam.spacescooter.entity.spi.Paintable;
|
||||
import de.teamteamteam.spacescooter.entity.spi.Updateable;
|
||||
import de.teamteamteam.spacescooter.screen.Screen;
|
||||
import de.teamteamteam.spacescooter.utility.GameConfig;
|
||||
import de.teamteamteam.spacescooter.utility.Loader;
|
||||
|
|
|
@ -7,6 +7,7 @@ import de.teamteamteam.spacescooter.entity.enemy.Enemy;
|
|||
import de.teamteamteam.spacescooter.entity.explosion.Explosion;
|
||||
import de.teamteamteam.spacescooter.entity.item.Items;
|
||||
import de.teamteamteam.spacescooter.entity.shot.Shot;
|
||||
import de.teamteamteam.spacescooter.entity.spi.Collidable;
|
||||
import de.teamteamteam.spacescooter.screen.Screen;
|
||||
import de.teamteamteam.spacescooter.utility.GameConfig;
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package de.teamteamteam.spacescooter.entity;
|
||||
package de.teamteamteam.spacescooter.entity.spi;
|
||||
|
||||
import java.awt.Rectangle;
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package de.teamteamteam.spacescooter.entity;
|
||||
package de.teamteamteam.spacescooter.entity.spi;
|
||||
|
||||
/**
|
||||
* Interface providing everything needed to handle taking damage.
|
|
@ -1,4 +1,4 @@
|
|||
package de.teamteamteam.spacescooter.entity;
|
||||
package de.teamteamteam.spacescooter.entity.spi;
|
||||
|
||||
import java.awt.Graphics2D;
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package de.teamteamteam.spacescooter.entity;
|
||||
package de.teamteamteam.spacescooter.entity.spi;
|
||||
|
||||
/**
|
||||
* Interface providing the update method.
|
Loading…
Reference in New Issue