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

interface ButtonListener extends EventListener {

        void contact(Contact c);

}