codeChallenge/Interfaces/Eagle.java
2024-09-09 16:08:48 -04:00

11 lines
234 B
Java

public class Eagle implements Attack{
public static void main(String[] args) {
}
@Override
public void Attacking() {
System.out.println("The Eagle is going crazy and I can't fucking find his prey.");
}
}