Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package u.ra.l.bearbear12345.forge.Mod_Downloader;
- import net.minecraft.client.gui.GuiScreen;
- import cpw.mods.fml.common.MissingModsException;
- import cpw.mods.fml.common.versioning.ArtifactVersion;
- public class GuiDownloadComplete extends GuiScreen {
- @Override
- /**
- * Adds the buttons (and other controls) to the screen in question.
- */
- public void initGui() {
- super.initGui();
- }
- @Override
- /**
- * Draws the screen and all the components in it.
- */
- public void drawScreen(int par1, int par2, float par3) {
- this.drawDefaultBackground();
- int offset = Math.max(85 - /**/0/* modsMissing.missingMods.size() */ * 10, 10);
- this.drawCenteredString(
- this.fontRenderer,
- "Forge Mod Loader has found a problem with your minecraft installation",
- this.width / 2, offset, 0xFFFFFF);
- offset += 10;
- this.drawCenteredString(this.fontRenderer,
- "The mods and versions listed below could not be found",
- this.width / 2, offset, 0xFFFFFF);
- offset += 5;
- offset += 20;
- this.drawCenteredString(
- this.fontRenderer,
- "The file 'ForgeModLoader-client-0.log' contains more information",
- this.width / 2, offset, 0xFFFFFF);
- }
- }
Add Comment
Please, Sign In to add comment