
package interfaceExample2;

public interface Pet {
	public void botherMe();
	public void doTrick();
}
