blob: 07125643c9105ae983a33221d60d52ede7d186b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package me.shedaniel.rei.api;
import java.awt.*;
public interface ButtonAreaSupplier {
Rectangle get(Rectangle bounds);
default String getButtonText() {
return "+";
}
}
|