public abstract class Insect {
	protected  int  hunger, health;
	protected  boolean  repro;
	protected  int  x, y;
	
	public Insect () {
		hunger=7;
		health=8;
		repro=false;
		x=1;
		y=1;
	}
	
	public Insect (int a, int b, boolean c, int d, int f) {
		hunger=a;
		health=b;
		repro=false;
		x=d;
		y=f;
	}

	
	public abstract void Hop (int a, int b) ;
	public abstract void Eat () ;
	public abstract void Mate () ;
}
	
	
	