Move Entity interfaces into a spi (Service Providing Interfaces) package.

This commit is contained in:
Jan Philipp Timme 2014-11-07 21:03:45 +01:00
parent 17aafe11f9
commit dda0fb8313
6 changed files with 7 additions and 4 deletions

View File

@ -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;

View File

@ -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;

View File

@ -1,4 +1,4 @@
package de.teamteamteam.spacescooter.entity;
package de.teamteamteam.spacescooter.entity.spi;
import java.awt.Rectangle;

View File

@ -1,4 +1,4 @@
package de.teamteamteam.spacescooter.entity;
package de.teamteamteam.spacescooter.entity.spi;
/**
* Interface providing everything needed to handle taking damage.

View File

@ -1,4 +1,4 @@
package de.teamteamteam.spacescooter.entity;
package de.teamteamteam.spacescooter.entity.spi;
import java.awt.Graphics2D;

View File

@ -1,4 +1,4 @@
package de.teamteamteam.spacescooter.entity;
package de.teamteamteam.spacescooter.entity.spi;
/**
* Interface providing the update method.