blob: 09f254aa80cb499342be31f1dd6fd2fad2c25f2c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
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);
}
}
|