blob: 0a98ccf722a245e8e3282ab6c723d21ceb099f80 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/*
* Roughly Enough Items by Danielshe.
* Licensed under the MIT License.
*/
package me.shedaniel.rei.api;
import me.shedaniel.math.api.Rectangle;
import me.shedaniel.rei.api.annotations.Internal;
@Internal
@Deprecated
public interface OptimalEntryStack {
default void optimisedRenderStart(float delta) {
}
default void optimisedRenderBase(Rectangle bounds, int mouseX, int mouseY, float delta) {
}
default void optimisedRenderOverlay(Rectangle bounds, int mouseX, int mouseY, float delta) {
}
default void optimisedRenderEnd(float delta) {
}
}
|