-
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: smithing table pattern encoding
- Loading branch information
1 parent
a4bd22d
commit 45dc41f
Showing
43 changed files
with
779 additions
and
328 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
14 changes: 0 additions & 14 deletions
14
...src/main/java/com/refinedmods/refinedstorage/common/api/autocrafting/CraftingPattern.java
This file was deleted.
Oops, something went wrong.
11 changes: 0 additions & 11 deletions
11
...c/main/java/com/refinedmods/refinedstorage/common/api/autocrafting/ProcessingPattern.java
This file was deleted.
Oops, something went wrong.
9 changes: 0 additions & 9 deletions
9
.../main/java/com/refinedmods/refinedstorage/common/api/autocrafting/StonecutterPattern.java
This file was deleted.
Oops, something went wrong.
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
11 changes: 11 additions & 0 deletions
11
...mon/src/main/java/com/refinedmods/refinedstorage/common/autocrafting/CraftingPattern.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,11 @@ | ||
package com.refinedmods.refinedstorage.common.autocrafting; | ||
|
||
import com.refinedmods.refinedstorage.api.resource.ResourceAmount; | ||
import com.refinedmods.refinedstorage.common.api.autocrafting.Pattern; | ||
import com.refinedmods.refinedstorage.common.api.support.resource.PlatformResourceKey; | ||
|
||
import java.util.List; | ||
|
||
record CraftingPattern(List<List<PlatformResourceKey>> inputs, ResourceAmount output, List<ResourceAmount> byproducts) | ||
implements Pattern { | ||
} |
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
Oops, something went wrong.