import java.awt.*; public class Prey extends Icobj { public Prey(String n){ super(n); radius = 10; color = Color.blue; } public void behavior(){ super.behavior(); Icobj target = closest(100,Color.red); if (target!=null){ //System.out.println(this+" goes away from "+target); if (x