I've created an image for each sub-class of actor, for when they eat all of their prey. I'd like to display said image over top
of the world once a team eats all of their prey (Crabs eat worms, worms eat lobsters, lobsters eat crabs), but it doesn't seem to work. Have I gone wrong somewhere?
private void determineWinner() { if (player == 0 && amountOfCrabs == 0) { addObject (new GameOverLobsters(), 0,0); }