blob: 25c88318e2a7b9d59c05f35e8e6ce80ae1c923d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
package de.hysky.skyblocker.utils;
import net.minecraft.client.gui.DrawContext;
import net.minecraft.client.gui.screen.Screen;
import net.minecraft.text.Text;
public abstract class BasePlaceholderScreen extends Screen {
public BasePlaceholderScreen(Text title) {
super(title);
}
@Override
public void render(DrawContext context, int mouseX, int mouseY, float delta) {
}
@Override
public void renderBackground(DrawContext context, int mouseX, int mouseY, float delta) {
}
}
|