diff options
| author | Unknown <shekwancheung0528@gmail.com> | 2018-12-22 13:17:31 +0800 |
|---|---|---|
| committer | Unknown <shekwancheung0528@gmail.com> | 2018-12-22 13:17:31 +0800 |
| commit | 15f6cc9eb567b6ef685bc6c1a6f3364270300914 (patch) | |
| tree | 3c2911284faccd10f97e3aa307719ec12efd4b53 /src/main/java/me/shedaniel/api/IRecipe.java | |
| parent | 449fc73beb20ceda44a12422129151a88306fac8 (diff) | |
| download | RoughlyEnoughItems-15f6cc9eb567b6ef685bc6c1a6f3364270300914.tar.gz RoughlyEnoughItems-15f6cc9eb567b6ef685bc6c1a6f3364270300914.tar.bz2 RoughlyEnoughItems-15f6cc9eb567b6ef685bc6c1a6f3364270300914.zip | |
from aei but like jei now
Diffstat (limited to 'src/main/java/me/shedaniel/api/IRecipe.java')
| -rwxr-xr-x | src/main/java/me/shedaniel/api/IRecipe.java | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/main/java/me/shedaniel/api/IRecipe.java b/src/main/java/me/shedaniel/api/IRecipe.java new file mode 100755 index 000000000..6359c351a --- /dev/null +++ b/src/main/java/me/shedaniel/api/IRecipe.java @@ -0,0 +1,15 @@ +package me.shedaniel.api; + +import java.util.List; + +/** + * Created by James on 7/27/2018. + */ +public interface IRecipe<T> { + + public String getId(); + + public List<T> getOutput(); + + public List<List<T>> getInput(); +} |
