//Tasha Wallage //Period 7 //allows the World class to store Food, Organism, and Predator in a single HashMap and address them all simularly //(such as by calling act on everything in the HashMap public abstract interface Species { public abstract void act(); public Location getLoc(); public String getName(); public int getSpeed(); }