public class SlimePacket implements java.io.Serializable {
	int playerX;
	int playerY;
	int playerXV;
	int playerYV;
	boolean hitBall;

	public SlimePacket(int x, int y, int dx, int dy, boolean hit_ball) {
		this.playerX = x;
		this.playerY = y;
		this.playerXV = dx;
		this.playerYV = dy;
		this.hitBall = hit_ball;
	}
}
