Packages haben nun grundsätzlich singulare Namen.

This commit is contained in:
Jan Philipp Timme 2014-10-28 10:26:54 +01:00
parent 3e7d54902f
commit dde94437fc
14 changed files with 22 additions and 22 deletions

View File

@ -3,12 +3,12 @@ package de.teamteamteam.spacescooter;
import java.awt.EventQueue;
import de.teamteamteam.spacescooter.background.StarBackground;
import de.teamteamteam.spacescooter.entities.Player;
import de.teamteamteam.spacescooter.entities.TestEntity;
import de.teamteamteam.spacescooter.entity.Player;
import de.teamteamteam.spacescooter.entity.TestEntity;
import de.teamteamteam.spacescooter.gui.GameFrame;
import de.teamteamteam.spacescooter.threads.PaintThread;
import de.teamteamteam.spacescooter.threads.UpdateThread;
import de.teamteamteam.spacescooter.utilities.GraphicsSettings;
import de.teamteamteam.spacescooter.thread.PaintThread;
import de.teamteamteam.spacescooter.thread.UpdateThread;
import de.teamteamteam.spacescooter.utility.GraphicsSettings;
/**
* Nothing but a class containing the main method.

View File

@ -2,7 +2,7 @@ package de.teamteamteam.spacescooter.background;
import java.util.ArrayList;
import de.teamteamteam.spacescooter.entities.Entity;
import de.teamteamteam.spacescooter.entity.Entity;
public abstract class Background extends Entity {

View File

@ -6,7 +6,7 @@ import java.io.IOException;
import javax.imageio.ImageIO;
import de.teamteamteam.spacescooter.entities.Player;
import de.teamteamteam.spacescooter.entity.Player;
public class StarBackground extends Background {

View File

@ -1,4 +1,4 @@
package de.teamteamteam.spacescooter.controls;
package de.teamteamteam.spacescooter.control;
import java.awt.event.KeyEvent;
import java.awt.event.KeyListener;

View File

@ -1,4 +1,4 @@
package de.teamteamteam.spacescooter.entities;
package de.teamteamteam.spacescooter.entity;
import java.util.ArrayList;

View File

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

View File

@ -1,4 +1,4 @@
package de.teamteamteam.spacescooter.entities;
package de.teamteamteam.spacescooter.entity;
import java.awt.Graphics;
import java.awt.event.KeyEvent;
@ -7,7 +7,7 @@ import java.io.IOException;
import javax.imageio.ImageIO;
import de.teamteamteam.spacescooter.controls.Keyboard;
import de.teamteamteam.spacescooter.control.Keyboard;
public class Player extends Entity {

View File

@ -1,10 +1,10 @@
package de.teamteamteam.spacescooter.entities;
package de.teamteamteam.spacescooter.entity;
import java.awt.Color;
import java.awt.Graphics;
import java.awt.event.KeyEvent;
import de.teamteamteam.spacescooter.controls.Keyboard;
import de.teamteamteam.spacescooter.control.Keyboard;
public class TestEntity extends Entity {

View File

@ -1,4 +1,4 @@
package de.teamteamteam.spacescooter.entities;
package de.teamteamteam.spacescooter.entity;
public interface Updateable {

View File

@ -8,8 +8,8 @@ import java.util.Iterator;
import javax.swing.JFrame;
import de.teamteamteam.spacescooter.background.Background;
import de.teamteamteam.spacescooter.controls.Keyboard;
import de.teamteamteam.spacescooter.entities.Entity;
import de.teamteamteam.spacescooter.control.Keyboard;
import de.teamteamteam.spacescooter.entity.Entity;
/**
* The game will take place in this beautiful window.

View File

@ -1,4 +1,4 @@
package de.teamteamteam.spacescooter.threads;
package de.teamteamteam.spacescooter.thread;
import java.awt.EventQueue;

View File

@ -1,4 +1,4 @@
package de.teamteamteam.spacescooter.threads;
package de.teamteamteam.spacescooter.thread;
public abstract class TimedThread extends Thread {

View File

@ -1,9 +1,9 @@
package de.teamteamteam.spacescooter.threads;
package de.teamteamteam.spacescooter.thread;
import java.util.Iterator;
import de.teamteamteam.spacescooter.background.Background;
import de.teamteamteam.spacescooter.entities.Entity;
import de.teamteamteam.spacescooter.entity.Entity;
public class UpdateThread extends TimedThread {

View File

@ -1,4 +1,4 @@
package de.teamteamteam.spacescooter.utilities;
package de.teamteamteam.spacescooter.utility;
import java.awt.DisplayMode;
import java.awt.GraphicsDevice;