aboutsummaryrefslogtreecommitdiff
path: root/PunchingBag/src/ButtonListener.java
blob: 3338a083e4b3905d3ee8ae532fb8bec5f0513558 (plain)
1
2
3
4
5
6
7
import java.util.EventListener;

interface ButtonListener extends EventListener {
	
	void buttonPressed(int x, int y);

}