-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New Campfire, Temperature Rendering, Drink Stacking
New campfire model by fonnymunkey New frost rod / powder textures by Artsy Tweaked campfire particles slightly Moved temperature rendering to All phase Drinks are stackable to 8 now Removed anvil handler as it's no longer necessary Bump gradle, updated contributors
- Loading branch information
1 parent
dab3f58
commit 96002e4
Showing
15 changed files
with
703 additions
and
164 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
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
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
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
9 changes: 9 additions & 0 deletions
9
src/main/java/com/charles445/simpledifficulty/util/QuadConsumer.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,9 @@ | ||
package com.charles445.simpledifficulty.util; | ||
|
||
import java.util.Objects; | ||
|
||
@FunctionalInterface | ||
public interface QuadConsumer<A, B, C, D> | ||
{ | ||
void accept(A a, B b, C c, D d); | ||
} |
9 changes: 9 additions & 0 deletions
9
src/main/java/com/charles445/simpledifficulty/util/TriConsumer.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,9 @@ | ||
package com.charles445.simpledifficulty.util; | ||
|
||
import java.util.Objects; | ||
|
||
@FunctionalInterface | ||
public interface TriConsumer<A, B, C> | ||
{ | ||
void accept(A a, B b, C c); | ||
} |
Oops, something went wrong.