blob: b362dcb73c96b82e2b225024bbca9be98f9a243d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
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) {
}
}
|