Reformat and clean up "server" package

This commit is contained in:
P0nk
2021-09-09 23:27:38 +02:00
parent d389665bd7
commit e8ef3a492c
80 changed files with 2104 additions and 2087 deletions

View File

@@ -21,12 +21,13 @@
*/
package server.movement;
import java.awt.Point;
import java.awt.*;
public abstract class AbstractLifeMovement implements LifeMovement {
private Point position;
private int duration;
private int newstate, type;
private final Point position;
private final int duration;
private final int newstate;
private final int type;
public AbstractLifeMovement(int type, Point position, int duration, int newstate) {
super();

View File

@@ -21,7 +21,7 @@
*/
package server.movement;
import java.awt.Point;
import java.awt.*;
public interface LifeMovement extends LifeMovementFragment {
Point getPosition();