0
I’m starting to learn programming in java, and the following happened:
ERRO!!!!!
Exception in thread "main" java.lang.Error: Unresolved compilation problems:
Player cannot be resolved to a type
Player cannot be resolved to a type
at oo/oo.main.main(main.java:5)
package oo;
public class jogador {
public void startplayer() {
System.out.println("Player started");
}
}
package oo;
public class inimigo {
public void startenemy() {
System.out.println("Enemy started");
}
}
package oo;
public class main {
public static void main (String[] args) {
Player player = new Player();
player.startplayer();
}
}