blob: b64a4583e38cbc2b3e5cde7ba34f38f6f2d569fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
package de.hysky.skyblocker.skyblock.auction;
@FunctionalInterface
public interface SlotClickHandler {
void click(int slot, int button);
default void click(int slot) {
click(slot, 0);
}
}
|