Pls I've tried all I can and it keeps saying It doesn't initialise correctly
package com.codegym.task.task24.task2413;
import java.util.List;
public class Arkanoid {
//creating size of the game field
private int width;
private int height;
//storing reference to ball, paddle and bricks
private Ball ball;
private Paddle paddle;
private List <Brick> bricks;
//storing reference to the arkanoid game
static Arkanoid game;
//creating setters for the fields
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;
}
//creating getters for the fields
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 Arkanoid(int width, int height){
this.width = width;
this.height = height;
}
//method to store logic of the game
public void run(){
}
//to move objects that need to be moved by one step
public void move(){
}
public static void main(String[] args){
}
}