blob: 813cfaad6dfdbedce81c8fcf5ee9d7f37276adef (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
package me.shedaniel.rei.api;
public interface DisplayVisibilityHandler {
default float getPriority() {
return 0f;
}
DisplayVisibility handleDisplay(RecipeCategory category, RecipeDisplay display);
}
|