package calculator2003;

// Defines the interface for key strike behavior.
public interface Key
{
	public void hit();
}