у меня не получается выполнить последние 4 пункта
package com.javarush.task.task24.task2413;
public class Arkanoid {
public static void main (String[] args){
}
public static Arkanoid game;
private int width;
private int height;
public Arkanoid(int width, int height) {
this.width = width;
this.height = height;
}
public int getWidth() {
return width;
}
public int getHeight() {
return height;
}
public void setWidth(int width) {
this.width = width;
}
public void setHeight(int height) {
this.height = height;
}
}