
// VamlorRMI - Interface that gives definitions of each remote method
// See VamlorRMIImpl for details

public interface VamlorRMI extends java.rmi.Remote {
	public int [] getIDList() throws java.rmi.RemoteException;
	
    public int getX(int id) throws java.rmi.RemoteException;
    public int getY(int id) throws java.rmi.RemoteException;
    public int getEnergyLevel(int id) throws java.rmi.RemoteException;
    public int getHealthLevel(int id) throws java.rmi.RemoteException;
	public String getState(int id) throws java.rmi.RemoteException;
	public String getName(int id) throws java.rmi.RemoteException;
}
