aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/me/shedaniel/rei/gui/widget/LateRenderable.java
blob: 22b927af65b7e350d1e21f5d274d5c8ee8c88bcf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
 * Roughly Enough Items by Danielshe.
 * Licensed under the MIT License.
 */

package me.shedaniel.rei.gui.widget;

import org.jetbrains.annotations.ApiStatus;

@ApiStatus.Internal
public interface LateRenderable {
    void lateRender(int mouseX, int mouseY, float delta);
}