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