Updated build.gradle to automatically build fat jars with the dependencies in the /libs folder. This utilizes the shade.sh shell script. Use ./gradlew without explicitely invoking the build task, as this will automatically build a fat jar.
Sorry for this painful commit, but git somehow f'd up and sees changes in files where there aren't any.
This commit is contained in:
6
src/main/java/eu/crushedpixel/replaymod/gui/replaystudio/GuiStudioPart.java
Normal file → Executable file
6
src/main/java/eu/crushedpixel/replaymod/gui/replaystudio/GuiStudioPart.java
Normal file → Executable file
@@ -1,5 +1,7 @@
|
||||
package eu.crushedpixel.replaymod.gui.replaystudio;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
import net.minecraft.client.gui.GuiScreen;
|
||||
|
||||
public abstract class GuiStudioPart extends GuiScreen {
|
||||
@@ -20,5 +22,7 @@ public abstract class GuiStudioPart extends GuiScreen {
|
||||
public abstract void keyTyped(char typedChar, int keyCode);
|
||||
|
||||
@Override
|
||||
public abstract void mouseClicked(int mouseX, int mouseY, int mouseButton);
|
||||
public void mouseClicked(int mouseX, int mouseY, int mouseButton) throws IOException {
|
||||
super.mouseClicked(mouseX, mouseY, mouseButton);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user