Move Highscore to brain package.

This commit is contained in:
Jan Philipp Timme 2014-12-16 12:32:42 +01:00
parent fbd83aa34e
commit 751dad9778
4 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
package de.teamteamteam.spacescooter.utility;
package de.teamteamteam.spacescooter.brain;
import java.io.File;
import java.io.FileInputStream;

View File

@ -7,10 +7,10 @@ import java.awt.Point;
import java.awt.event.KeyEvent;
import de.teamteamteam.spacescooter.brain.GameConfig;
import de.teamteamteam.spacescooter.brain.Highscore;
import de.teamteamteam.spacescooter.brain.PlayerSession;
import de.teamteamteam.spacescooter.control.Keyboard;
import de.teamteamteam.spacescooter.gui.ImageEntity;
import de.teamteamteam.spacescooter.utility.Highscore;
/**
* This is the EnterHighscoreScreen, which is displayed once the player ended

View File

@ -3,6 +3,7 @@ package de.teamteamteam.spacescooter.screen;
import java.awt.Graphics2D;
import java.awt.event.KeyEvent;
import de.teamteamteam.spacescooter.brain.Highscore;
import de.teamteamteam.spacescooter.brain.PlayerSession;
import de.teamteamteam.spacescooter.control.Keyboard;
import de.teamteamteam.spacescooter.entity.Player;
@ -13,7 +14,6 @@ import de.teamteamteam.spacescooter.gui.SecondaryWeaponAmount;
import de.teamteamteam.spacescooter.gui.ShieldBar;
import de.teamteamteam.spacescooter.level.Level;
import de.teamteamteam.spacescooter.utility.CollisionHandler;
import de.teamteamteam.spacescooter.utility.Highscore;
/**
* In this GameScreen, the actual gameplay takes place.

View File

@ -5,11 +5,11 @@ import java.awt.Font;
import java.awt.Graphics2D;
import java.awt.event.KeyEvent;
import de.teamteamteam.spacescooter.brain.GameConfig;
import de.teamteamteam.spacescooter.brain.Highscore;
import de.teamteamteam.spacescooter.brain.PlayerSession;
import de.teamteamteam.spacescooter.control.Keyboard;
import de.teamteamteam.spacescooter.gui.Button;
import de.teamteamteam.spacescooter.gui.ImageEntity;
import de.teamteamteam.spacescooter.utility.Highscore;
/**
* This one displays the whole HighScore and offers an option to go back to the MainMenu.