aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/me/shedaniel/rei/gui/widget/ReloadConfigButtonWidget.java
blob: de24073af0d32313bba287c0e6635060e65b76ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * Copyright (c) 2018, 2019, 2020 shedaniel
 * Licensed under the MIT License (the "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);
    }
}