generated from MrSphay/codex-agent-repository-kit
33 lines
1.3 KiB
Java
33 lines
1.3 KiB
Java
package com.vinlanx.explosionoverhaul.client;
|
|
|
|
import net.minecraft.client.gui.GuiGraphics;
|
|
import net.minecraft.client.gui.screens.Screen;
|
|
import net.minecraft.network.chat.Component;
|
|
|
|
public class IntroSplashScreen extends Screen {
|
|
public IntroSplashScreen() {
|
|
super(Component.literal("Explosion Overhaul"));
|
|
}
|
|
|
|
@Override
|
|
public void render(GuiGraphics graphics, int mouseX, int mouseY, float partialTick) {
|
|
this.renderBackground(graphics, mouseX, mouseY, partialTick);
|
|
graphics.drawCenteredString(this.font, Component.literal("Explosion Overhaul"), this.width / 2, this.height / 2 - 32, 0xFFFFFF);
|
|
graphics.drawCenteredString(this.font, Component.literal("NeoForge 1.21.1 private test port"), this.width / 2, this.height / 2 - 10, 0xD0D0D0);
|
|
graphics.drawCenteredString(this.font, Component.literal("Click or press any key to continue"), this.width / 2, this.height / 2 + 16, 0xA0A0A0);
|
|
super.render(graphics, mouseX, mouseY, partialTick);
|
|
}
|
|
|
|
@Override
|
|
public boolean keyPressed(int keyCode, int scanCode, int modifiers) {
|
|
this.onClose();
|
|
return true;
|
|
}
|
|
|
|
@Override
|
|
public boolean mouseClicked(double mouseX, double mouseY, int button) {
|
|
this.onClose();
|
|
return true;
|
|
}
|
|
}
|