Two subclasses of X are not recognizing that they are actually a subclass of X. For example:
I have no Idea why it is doing this. The actor X is still named X, so I'm at a loss. Could anyone help me?
import greenfoot.*;
public class Upgrades extends X //Error is highlighted as occurring here
{
public void act()
{
// Add your action code here.
}
}

