blob: e29e3326180b7f4268a714709db5020ed2b9db9d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/*
* Roughly Enough Items by Danielshe.
* Licensed under the MIT License.
*/
package me.shedaniel.rei.gui.widget;
import me.shedaniel.math.api.Rectangle;
import net.minecraft.text.Text;
import org.jetbrains.annotations.ApiStatus;
@ApiStatus.Internal
public abstract class LateRenderedButton extends ButtonWidget implements LateRenderable {
protected LateRenderedButton(Rectangle rectangle, Text text) {
super(rectangle, text);
}
protected LateRenderedButton(Rectangle rectangle, String text) {
super(rectangle, text);
}
}
|