blob: d5b015e5416c98ee090bb4dc3d40dabd909b898c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/*
* Roughly Enough Items by Danielshe.
* Licensed under the MIT License.
*/
package me.shedaniel.rei.gui.widget;
import net.minecraft.client.gui.widget.ButtonWidget;
import org.jetbrains.annotations.ApiStatus;
@ApiStatus.Internal
public class ReloadConfigButtonWidget extends ButtonWidget {
public ReloadConfigButtonWidget(int x, int y, int width, int height, String text, PressAction action) {
super(x, y, width, height, text, action);
}
}
|