-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
229 changed files
with
689 additions
and
259 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,10 @@ | ||
# Sets default memory used for gradle commands. Can be overridden by user or command line properties. | ||
# This is required to provide enough memory for the Minecraft decompilation process. | ||
org.gradle.jvmargs=-Xmx1G | ||
org.gradle.daemon=false | ||
org.gradle.jvmargs=-Xmx3G -Dmixin.debug=true | ||
org.gradle.daemon=false | ||
mod_version=1.0 | ||
modid=forest_tree | ||
mc_version=1.15.2 | ||
forge_version=31.1.19 | ||
mapping=20200624 | ||
jei_version = 6.0.0.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -81,4 +81,4 @@ exit /b 1 | |
:mainEnd | ||
if "%OS%"=="Windows_NT" endlocal | ||
|
||
:omega | ||
:omega |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
src/main/java/lilypuree/forest_tree/core/setup/ClientEventListener.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
package lilypuree.forest_tree.core.setup; | ||
|
||
|
||
import lilypuree.forest_tree.ForestTree; | ||
import lilypuree.forest_tree.trees.block.BranchBlock; | ||
import lilypuree.forest_tree.trees.block.BranchVoxelShapes; | ||
import lilypuree.forest_tree.util.Util; | ||
import net.minecraft.block.Block; | ||
import net.minecraft.client.Minecraft; | ||
import net.minecraft.entity.player.PlayerEntity; | ||
import net.minecraft.util.Hand; | ||
import net.minecraft.util.math.*; | ||
import net.minecraft.util.math.shapes.VoxelShape; | ||
import net.minecraft.world.IBlockReader; | ||
import net.minecraftforge.api.distmarker.Dist; | ||
import net.minecraftforge.client.event.InputEvent; | ||
import net.minecraftforge.eventbus.api.SubscribeEvent; | ||
import net.minecraftforge.fml.common.Mod; | ||
|
||
@Mod.EventBusSubscriber(modid = ForestTree.MODID, value = Dist.CLIENT, bus = Mod.EventBusSubscriber.Bus.FORGE) | ||
public class ClientEventListener { | ||
|
||
} |
18 changes: 0 additions & 18 deletions
18
src/main/java/lilypuree/forest_tree/core/setup/ClientProxy.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.