blob: a4fb0f2478ec2534cf7ac959f195b94101ac16ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/*
* Roughly Enough Items by Danielshe.
* Licensed under the MIT License.
*/
package me.shedaniel.rei.gui.widget;
import me.shedaniel.rei.api.annotations.Internal;
import net.minecraft.client.gui.widget.ButtonWidget;
@Internal
@Deprecated
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);
}
}
|