package exceptionTest;

import omq.Remote;

public interface ServerInterface extends Remote {
	public void addWheels(int numWheels);

	public void addHp(int hp);

	public int getHp();

	public int getWheels();

	public void setPrice(int price);

	public int getPrice();
}
