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