package ail; public interface Landscape { /** * Gets the agents within a particular spot */ public abstract Agent[] getAgents(); /** * Gets the resources within a particular spot */ public abstract Resource getResources(); }