Проверку код проходит, а при запуске выдаёт: "Возникла ошибка с кодом: APP_PUBLISH_ERROR".
помогите пж..
package com.javarush.games.snake;
import com.javarush.engine.cell.*;
public class SnakeGame extends Game {
public static final int WIDTH = 15;
public static final int HEIGHT = 15;
private Snake snake;
private int turnDelay;
@Override
public void initialize(){
setScreenSize(WIDTH, HEIGHT);
createGame();
}
private void createGame(){
snake = new Snake(WIDTH/2, HEIGHT/2);
drawScene();
turnDelay = 300;
setTurnTimer(turnDelay);
}
private void drawScene(){
for(int x=0; x<WIDTH; x++){
for(int y=0; y<HEIGHT; y++){
setCellColor(x, y, Color.GREEN);
}
}
snake.draw(this);
}
@Override
public void onTurn(int x){
snake.move();
drawScene();
}
}