In my NPC interface I have:
public void move(int x, int y);
My Character class has this:
public class Character extends Component implements NPC
When I have Eclipse automatically add the unimplemented methods, it doesn’t add move(), so when I manually create it having @override, it tells me that I’m overriding the move method of Component. Is there a way to tell it that I’m overriding the NPC interface method and not the Component class?