Skip to content

Commit

Permalink
1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
Moulberry committed Jul 4, 2020
1 parent bd6f658 commit 009ed0e
Show file tree
Hide file tree
Showing 29 changed files with 916 additions and 323 deletions.
607 changes: 476 additions & 131 deletions src/main/java/io/github/moulberry/notenoughupdates/CustomAH.java

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
package io.github.moulberry.notenoughupdates;

import net.minecraft.client.gui.GuiScreen;
import org.lwjgl.input.Mouse;

public class CustomAHGui extends GuiScreen {

public CustomAHGui() {
this.allowUserInput = true;
}

public boolean doesGuiPauseGame() {
return false;
}

}
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package io.github.moulberry.notenoughupdates;

import com.google.gson.JsonObject;
import io.github.moulberry.notenoughupdates.util.Utils;
import net.minecraft.client.Minecraft;
import net.minecraft.client.gui.inventory.GuiCrafting;
import net.minecraft.client.resources.I18n;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import com.google.gson.JsonObject;
import io.github.moulberry.notenoughupdates.util.TexLoc;
import io.github.moulberry.notenoughupdates.util.Utils;
import net.minecraft.client.Minecraft;
import net.minecraft.client.gui.inventory.GuiCrafting;
import net.minecraft.client.resources.I18n;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ private GuiTextures() {} //Not instantiable. Use import static to access class m
//public static final ResourceLocation next = new ResourceLocation("notenoughupdates:next.png");
public static final ResourceLocation rightarrow_overlay = new ResourceLocation("notenoughupdates:rightarrow_overlay.png");
public static final ResourceLocation rightarrow = new ResourceLocation("notenoughupdates:rightarrow.png");
public static final ResourceLocation item_edit = new ResourceLocation("notenoughupdates:item_edit.png");
public static final ResourceLocation close = new ResourceLocation("notenoughupdates:close.png");
public static final ResourceLocation settings = new ResourceLocation("notenoughupdates:settings.png");

Expand All @@ -24,8 +23,9 @@ private GuiTextures() {} //Not instantiable. Use import static to access class m

public static final ResourceLocation item_mask = new ResourceLocation("notenoughupdates:item_mask.png");

public static final ResourceLocation ah_item_holder = new ResourceLocation("notenoughupdates:ah_item_holder.png");
public static final ResourceLocation ah_item_tab = new ResourceLocation("notenoughupdates:ah_item_tab.png");
public static final ResourceLocation auction_view = new ResourceLocation("notenoughupdates:auction_view.png");
public static final ResourceLocation auction_price = new ResourceLocation("notenoughupdates:auction_price.png");
public static final ResourceLocation auction_view_buttons = new ResourceLocation("notenoughupdates:auction_view_buttons.png");

public static final ResourceLocation logo = new ResourceLocation("notenoughupdates:logo.png");
public static final ResourceLocation logo_fg = new ResourceLocation("notenoughupdates:logo_fg.png");
Expand Down
Loading

0 comments on commit 009ed0e

Please sign in to comment.