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