Not sure what is going on with the last requirement for validation. I'm not even 100% sure what it conditions are even asking me to do. Then in the text it is suggesting using setPoint() but it didn't even ask us to make a return value for that method. Thanks in advance for your time.
package com.codegym.task.task24.task2413;
import java.util.List;
public class Arkanoid {
static Arkanoid game;
private int width, height;
private Ball ball;
private Paddle paddle;
private List<Brick> bricks;
public Arkanoid(int width, int height) {
this.width = width;
this.height = height;
}
public void setWidth(int width) {
this.width = width;
}
public void setHeight(int height) {
this.height = height;
}
public void setBall(Ball ball) {
this.ball = ball;
}
public void setPaddle(Paddle paddle) {
this.paddle = paddle;
}
public void setBricks(List<Brick> bricks) {
this.bricks = bricks;
}
public int getWidth() {
return width;
}
public int getHeight() {
return height;
}
public Ball getBall() {
return ball;
}
public Paddle getPaddle() {
return paddle;
}
public List<Brick> getBricks() {
return bricks;
}
public void run() {
}
public void move() {
}
public static void main(String[] args) {
}
}