From 8f24a0f8446bddbbb5540163a96c2a6fde762823 Mon Sep 17 00:00:00 2001 From: Shnupbups Date: Thu, 18 Nov 2021 11:16:12 +1100 Subject: Waxing, Wax Scraping, Oxidizing, and Oxidation Scraping categories --- .../shedaniel/rei/plugin/common/BuiltinPlugin.java | 4 ++ .../shedaniel/rei/plugin/common/DefaultPlugin.java | 4 ++ .../displays/DefaultOxidationScrapingDisplay.java | 60 ++++++++++++++++++++++ .../common/displays/DefaultOxidizingDisplay.java | 60 ++++++++++++++++++++++ .../common/displays/DefaultWaxScrapingDisplay.java | 60 ++++++++++++++++++++++ .../common/displays/DefaultWaxingDisplay.java | 60 ++++++++++++++++++++++ 6 files changed, 248 insertions(+) create mode 100644 default-plugin/src/main/java/me/shedaniel/rei/plugin/common/displays/DefaultOxidationScrapingDisplay.java create mode 100644 default-plugin/src/main/java/me/shedaniel/rei/plugin/common/displays/DefaultOxidizingDisplay.java create mode 100644 default-plugin/src/main/java/me/shedaniel/rei/plugin/common/displays/DefaultWaxScrapingDisplay.java create mode 100644 default-plugin/src/main/java/me/shedaniel/rei/plugin/common/displays/DefaultWaxingDisplay.java (limited to 'default-plugin/src/main/java/me/shedaniel/rei/plugin/common') diff --git a/default-plugin/src/main/java/me/shedaniel/rei/plugin/common/BuiltinPlugin.java b/default-plugin/src/main/java/me/shedaniel/rei/plugin/common/BuiltinPlugin.java index b0dfa5be7..d74a6f3f3 100644 --- a/default-plugin/src/main/java/me/shedaniel/rei/plugin/common/BuiltinPlugin.java +++ b/default-plugin/src/main/java/me/shedaniel/rei/plugin/common/BuiltinPlugin.java @@ -51,5 +51,9 @@ public interface BuiltinPlugin { CategoryIdentifier BEACON_PAYMENT = CategoryIdentifier.of("minecraft", "plugins/beacon_payment"); CategoryIdentifier TILLING = CategoryIdentifier.of("minecraft", "plugins/tilling"); CategoryIdentifier PATHING = CategoryIdentifier.of("minecraft", "plugins/pathing"); + CategoryIdentifier WAXING = CategoryIdentifier.of("minecraft", "plugins/waxing"); + CategoryIdentifier WAX_SCRAPING = CategoryIdentifier.of("minecraft", "plugins/wax_scraping"); + CategoryIdentifier OXIDIZING = CategoryIdentifier.of("minecraft", "plugins/oxidizing"); + CategoryIdentifier OXIDATION_SCRAPING = CategoryIdentifier.of("minecraft", "plugins/oxidation_scraping"); CategoryIdentifier INFO = CategoryIdentifier.of("roughlyenoughitems", "plugins/information"); } diff --git a/default-plugin/src/main/java/me/shedaniel/rei/plugin/common/DefaultPlugin.java b/default-plugin/src/main/java/me/shedaniel/rei/plugin/common/DefaultPlugin.java index 807fec537..59184f312 100644 --- a/default-plugin/src/main/java/me/shedaniel/rei/plugin/common/DefaultPlugin.java +++ b/default-plugin/src/main/java/me/shedaniel/rei/plugin/common/DefaultPlugin.java @@ -122,6 +122,10 @@ public class DefaultPlugin implements BuiltinPlugin, REIServerPlugin { registry.register(BEACON_PAYMENT, DefaultBeaconDisplay.serializer(DefaultBeaconPaymentDisplay::new)); registry.register(TILLING, DefaultTillingDisplay.serializer()); registry.register(PATHING, DefaultPathingDisplay.serializer()); + registry.register(WAXING, DefaultWaxingDisplay.serializer()); + registry.register(WAX_SCRAPING, DefaultWaxScrapingDisplay.serializer()); + registry.register(OXIDIZING, DefaultOxidizingDisplay.serializer()); + registry.register(OXIDATION_SCRAPING, DefaultOxidationScrapingDisplay.serializer()); registry.register(INFO, DefaultInformationDisplay.serializer()); } diff --git a/default-plugin/src/main/java/me/shedaniel/rei/plugin/common/displays/DefaultOxidationScrapingDisplay.java b/default-plugin/src/main/java/me/shedaniel/rei/plugin/common/displays/DefaultOxidationScrapingDisplay.java new file mode 100644 index 000000000..d8118ad20 --- /dev/null +++ b/default-plugin/src/main/java/me/shedaniel/rei/plugin/common/displays/DefaultOxidationScrapingDisplay.java @@ -0,0 +1,60 @@ +/* + * This file is licensed under the MIT License, part of Roughly Enough Items. + * Copyright (c) 2018, 2019, 2020, 2021 shedaniel + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ + +package me.shedaniel.rei.plugin.common.displays; + +import java.util.Collections; +import java.util.List; + +import me.shedaniel.rei.api.common.category.CategoryIdentifier; +import me.shedaniel.rei.api.common.display.basic.BasicDisplay; +import me.shedaniel.rei.api.common.entry.EntryIngredient; +import me.shedaniel.rei.api.common.entry.EntryStack; +import me.shedaniel.rei.plugin.common.BuiltinPlugin; + +public class DefaultOxidationScrapingDisplay extends BasicDisplay { + public DefaultOxidationScrapingDisplay(EntryStack in, EntryStack out) { + this(Collections.singletonList(EntryIngredient.of(in)), Collections.singletonList(EntryIngredient.of(out))); + } + + public DefaultOxidationScrapingDisplay(List inputs, List outputs) { + super(inputs, outputs); + } + + public final EntryIngredient getIn() { + return getInputEntries().get(0); + } + + public final EntryIngredient getOut() { + return getOutputEntries().get(0); + } + + @Override + public CategoryIdentifier getCategoryIdentifier() { + return BuiltinPlugin.OXIDATION_SCRAPING; + } + + public static Serializer serializer() { + return Serializer.ofSimpleRecipeLess(DefaultOxidationScrapingDisplay::new); + } +} diff --git a/default-plugin/src/main/java/me/shedaniel/rei/plugin/common/displays/DefaultOxidizingDisplay.java b/default-plugin/src/main/java/me/shedaniel/rei/plugin/common/displays/DefaultOxidizingDisplay.java new file mode 100644 index 000000000..ba63c0bac --- /dev/null +++ b/default-plugin/src/main/java/me/shedaniel/rei/plugin/common/displays/DefaultOxidizingDisplay.java @@ -0,0 +1,60 @@ +/* + * This file is licensed under the MIT License, part of Roughly Enough Items. + * Copyright (c) 2018, 2019, 2020, 2021 shedaniel + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ + +package me.shedaniel.rei.plugin.common.displays; + +import java.util.Collections; +import java.util.List; + +import me.shedaniel.rei.api.common.category.CategoryIdentifier; +import me.shedaniel.rei.api.common.display.basic.BasicDisplay; +import me.shedaniel.rei.api.common.entry.EntryIngredient; +import me.shedaniel.rei.api.common.entry.EntryStack; +import me.shedaniel.rei.plugin.common.BuiltinPlugin; + +public class DefaultOxidizingDisplay extends BasicDisplay { + public DefaultOxidizingDisplay(EntryStack in, EntryStack out) { + this(Collections.singletonList(EntryIngredient.of(in)), Collections.singletonList(EntryIngredient.of(out))); + } + + public DefaultOxidizingDisplay(List inputs, List outputs) { + super(inputs, outputs); + } + + public final EntryIngredient getIn() { + return getInputEntries().get(0); + } + + public final EntryIngredient getOut() { + return getOutputEntries().get(0); + } + + @Override + public CategoryIdentifier getCategoryIdentifier() { + return BuiltinPlugin.OXIDIZING; + } + + public static Serializer serializer() { + return Serializer.ofSimpleRecipeLess(DefaultOxidizingDisplay::new); + } +} diff --git a/default-plugin/src/main/java/me/shedaniel/rei/plugin/common/displays/DefaultWaxScrapingDisplay.java b/default-plugin/src/main/java/me/shedaniel/rei/plugin/common/displays/DefaultWaxScrapingDisplay.java new file mode 100644 index 000000000..9ee2f3b93 --- /dev/null +++ b/default-plugin/src/main/java/me/shedaniel/rei/plugin/common/displays/DefaultWaxScrapingDisplay.java @@ -0,0 +1,60 @@ +/* + * This file is licensed under the MIT License, part of Roughly Enough Items. + * Copyright (c) 2018, 2019, 2020, 2021 shedaniel + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ + +package me.shedaniel.rei.plugin.common.displays; + +import java.util.Collections; +import java.util.List; + +import me.shedaniel.rei.api.common.category.CategoryIdentifier; +import me.shedaniel.rei.api.common.display.basic.BasicDisplay; +import me.shedaniel.rei.api.common.entry.EntryIngredient; +import me.shedaniel.rei.api.common.entry.EntryStack; +import me.shedaniel.rei.plugin.common.BuiltinPlugin; + +public class DefaultWaxScrapingDisplay extends BasicDisplay { + public DefaultWaxScrapingDisplay(EntryStack in, EntryStack out) { + this(Collections.singletonList(EntryIngredient.of(in)), Collections.singletonList(EntryIngredient.of(out))); + } + + public DefaultWaxScrapingDisplay(List inputs, List outputs) { + super(inputs, outputs); + } + + public final EntryIngredient getIn() { + return getInputEntries().get(0); + } + + public final EntryIngredient getOut() { + return getOutputEntries().get(0); + } + + @Override + public CategoryIdentifier getCategoryIdentifier() { + return BuiltinPlugin.WAX_SCRAPING; + } + + public static Serializer serializer() { + return Serializer.ofSimpleRecipeLess(DefaultWaxScrapingDisplay::new); + } +} diff --git a/default-plugin/src/main/java/me/shedaniel/rei/plugin/common/displays/DefaultWaxingDisplay.java b/default-plugin/src/main/java/me/shedaniel/rei/plugin/common/displays/DefaultWaxingDisplay.java new file mode 100644 index 000000000..d00fb14f9 --- /dev/null +++ b/default-plugin/src/main/java/me/shedaniel/rei/plugin/common/displays/DefaultWaxingDisplay.java @@ -0,0 +1,60 @@ +/* + * This file is licensed under the MIT License, part of Roughly Enough Items. + * Copyright (c) 2018, 2019, 2020, 2021 shedaniel + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ + +package me.shedaniel.rei.plugin.common.displays; + +import java.util.Collections; +import java.util.List; + +import me.shedaniel.rei.api.common.category.CategoryIdentifier; +import me.shedaniel.rei.api.common.display.basic.BasicDisplay; +import me.shedaniel.rei.api.common.entry.EntryIngredient; +import me.shedaniel.rei.api.common.entry.EntryStack; +import me.shedaniel.rei.plugin.common.BuiltinPlugin; + +public class DefaultWaxingDisplay extends BasicDisplay { + public DefaultWaxingDisplay(EntryStack in, EntryStack out) { + this(Collections.singletonList(EntryIngredient.of(in)), Collections.singletonList(EntryIngredient.of(out))); + } + + public DefaultWaxingDisplay(List inputs, List outputs) { + super(inputs, outputs); + } + + public final EntryIngredient getIn() { + return getInputEntries().get(0); + } + + public final EntryIngredient getOut() { + return getOutputEntries().get(0); + } + + @Override + public CategoryIdentifier getCategoryIdentifier() { + return BuiltinPlugin.WAXING; + } + + public static Serializer serializer() { + return Serializer.ofSimpleRecipeLess(DefaultWaxingDisplay::new); + } +} -- cgit From ce27d89d05738ea4cba2ab8ed6c52f093e988275 Mon Sep 17 00:00:00 2001 From: shedaniel Date: Thu, 18 Nov 2021 19:07:51 +0800 Subject: Add @Experimental on #659 --- .../java/me/shedaniel/rei/plugin/common/BuiltinPlugin.java | 5 +++++ .../common/displays/DefaultOxidationScrapingDisplay.java | 10 ++++++---- .../rei/plugin/common/displays/DefaultOxidizingDisplay.java | 10 ++++++---- .../rei/plugin/common/displays/DefaultWaxScrapingDisplay.java | 10 ++++++---- .../rei/plugin/common/displays/DefaultWaxingDisplay.java | 10 ++++++---- 5 files changed, 29 insertions(+), 16 deletions(-) (limited to 'default-plugin/src/main/java/me/shedaniel/rei/plugin/common') diff --git a/default-plugin/src/main/java/me/shedaniel/rei/plugin/common/BuiltinPlugin.java b/default-plugin/src/main/java/me/shedaniel/rei/plugin/common/BuiltinPlugin.java index d74a6f3f3..1a26117c0 100644 --- a/default-plugin/src/main/java/me/shedaniel/rei/plugin/common/BuiltinPlugin.java +++ b/default-plugin/src/main/java/me/shedaniel/rei/plugin/common/BuiltinPlugin.java @@ -33,6 +33,7 @@ import me.shedaniel.rei.plugin.common.displays.cooking.DefaultBlastingDisplay; import me.shedaniel.rei.plugin.common.displays.cooking.DefaultSmeltingDisplay; import me.shedaniel.rei.plugin.common.displays.cooking.DefaultSmokingDisplay; import me.shedaniel.rei.plugin.common.displays.crafting.DefaultCraftingDisplay; +import org.jetbrains.annotations.ApiStatus; public interface BuiltinPlugin { CategoryIdentifier> CRAFTING = CategoryIdentifier.of("minecraft", "plugins/crafting"); @@ -51,9 +52,13 @@ public interface BuiltinPlugin { CategoryIdentifier BEACON_PAYMENT = CategoryIdentifier.of("minecraft", "plugins/beacon_payment"); CategoryIdentifier TILLING = CategoryIdentifier.of("minecraft", "plugins/tilling"); CategoryIdentifier PATHING = CategoryIdentifier.of("minecraft", "plugins/pathing"); + @ApiStatus.Experimental CategoryIdentifier WAXING = CategoryIdentifier.of("minecraft", "plugins/waxing"); + @ApiStatus.Experimental CategoryIdentifier WAX_SCRAPING = CategoryIdentifier.of("minecraft", "plugins/wax_scraping"); + @ApiStatus.Experimental CategoryIdentifier OXIDIZING = CategoryIdentifier.of("minecraft", "plugins/oxidizing"); + @ApiStatus.Experimental CategoryIdentifier OXIDATION_SCRAPING = CategoryIdentifier.of("minecraft", "plugins/oxidation_scraping"); CategoryIdentifier INFO = CategoryIdentifier.of("roughlyenoughitems", "plugins/information"); } diff --git a/default-plugin/src/main/java/me/shedaniel/rei/plugin/common/displays/DefaultOxidationScrapingDisplay.java b/default-plugin/src/main/java/me/shedaniel/rei/plugin/common/displays/DefaultOxidationScrapingDisplay.java index d8118ad20..e74103ea6 100644 --- a/default-plugin/src/main/java/me/shedaniel/rei/plugin/common/displays/DefaultOxidationScrapingDisplay.java +++ b/default-plugin/src/main/java/me/shedaniel/rei/plugin/common/displays/DefaultOxidationScrapingDisplay.java @@ -23,20 +23,22 @@ package me.shedaniel.rei.plugin.common.displays; -import java.util.Collections; -import java.util.List; - import me.shedaniel.rei.api.common.category.CategoryIdentifier; import me.shedaniel.rei.api.common.display.basic.BasicDisplay; import me.shedaniel.rei.api.common.entry.EntryIngredient; import me.shedaniel.rei.api.common.entry.EntryStack; import me.shedaniel.rei.plugin.common.BuiltinPlugin; +import org.jetbrains.annotations.ApiStatus; + +import java.util.Collections; +import java.util.List; +@ApiStatus.Experimental public class DefaultOxidationScrapingDisplay extends BasicDisplay { public DefaultOxidationScrapingDisplay(EntryStack in, EntryStack out) { this(Collections.singletonList(EntryIngredient.of(in)), Collections.singletonList(EntryIngredient.of(out))); } - + public DefaultOxidationScrapingDisplay(List inputs, List outputs) { super(inputs, outputs); } diff --git a/default-plugin/src/main/java/me/shedaniel/rei/plugin/common/displays/DefaultOxidizingDisplay.java b/default-plugin/src/main/java/me/shedaniel/rei/plugin/common/displays/DefaultOxidizingDisplay.java index ba63c0bac..118270074 100644 --- a/default-plugin/src/main/java/me/shedaniel/rei/plugin/common/displays/DefaultOxidizingDisplay.java +++ b/default-plugin/src/main/java/me/shedaniel/rei/plugin/common/displays/DefaultOxidizingDisplay.java @@ -23,20 +23,22 @@ package me.shedaniel.rei.plugin.common.displays; -import java.util.Collections; -import java.util.List; - import me.shedaniel.rei.api.common.category.CategoryIdentifier; import me.shedaniel.rei.api.common.display.basic.BasicDisplay; import me.shedaniel.rei.api.common.entry.EntryIngredient; import me.shedaniel.rei.api.common.entry.EntryStack; import me.shedaniel.rei.plugin.common.BuiltinPlugin; +import org.jetbrains.annotations.ApiStatus; + +import java.util.Collections; +import java.util.List; +@ApiStatus.Experimental public class DefaultOxidizingDisplay extends BasicDisplay { public DefaultOxidizingDisplay(EntryStack in, EntryStack out) { this(Collections.singletonList(EntryIngredient.of(in)), Collections.singletonList(EntryIngredient.of(out))); } - + public DefaultOxidizingDisplay(List inputs, List outputs) { super(inputs, outputs); } diff --git a/default-plugin/src/main/java/me/shedaniel/rei/plugin/common/displays/DefaultWaxScrapingDisplay.java b/default-plugin/src/main/java/me/shedaniel/rei/plugin/common/displays/DefaultWaxScrapingDisplay.java index 9ee2f3b93..85e3edf43 100644 --- a/default-plugin/src/main/java/me/shedaniel/rei/plugin/common/displays/DefaultWaxScrapingDisplay.java +++ b/default-plugin/src/main/java/me/shedaniel/rei/plugin/common/displays/DefaultWaxScrapingDisplay.java @@ -23,20 +23,22 @@ package me.shedaniel.rei.plugin.common.displays; -import java.util.Collections; -import java.util.List; - import me.shedaniel.rei.api.common.category.CategoryIdentifier; import me.shedaniel.rei.api.common.display.basic.BasicDisplay; import me.shedaniel.rei.api.common.entry.EntryIngredient; import me.shedaniel.rei.api.common.entry.EntryStack; import me.shedaniel.rei.plugin.common.BuiltinPlugin; +import org.jetbrains.annotations.ApiStatus; + +import java.util.Collections; +import java.util.List; +@ApiStatus.Experimental public class DefaultWaxScrapingDisplay extends BasicDisplay { public DefaultWaxScrapingDisplay(EntryStack in, EntryStack out) { this(Collections.singletonList(EntryIngredient.of(in)), Collections.singletonList(EntryIngredient.of(out))); } - + public DefaultWaxScrapingDisplay(List inputs, List outputs) { super(inputs, outputs); } diff --git a/default-plugin/src/main/java/me/shedaniel/rei/plugin/common/displays/DefaultWaxingDisplay.java b/default-plugin/src/main/java/me/shedaniel/rei/plugin/common/displays/DefaultWaxingDisplay.java index d00fb14f9..131ee020e 100644 --- a/default-plugin/src/main/java/me/shedaniel/rei/plugin/common/displays/DefaultWaxingDisplay.java +++ b/default-plugin/src/main/java/me/shedaniel/rei/plugin/common/displays/DefaultWaxingDisplay.java @@ -23,20 +23,22 @@ package me.shedaniel.rei.plugin.common.displays; -import java.util.Collections; -import java.util.List; - import me.shedaniel.rei.api.common.category.CategoryIdentifier; import me.shedaniel.rei.api.common.display.basic.BasicDisplay; import me.shedaniel.rei.api.common.entry.EntryIngredient; import me.shedaniel.rei.api.common.entry.EntryStack; import me.shedaniel.rei.plugin.common.BuiltinPlugin; +import org.jetbrains.annotations.ApiStatus; + +import java.util.Collections; +import java.util.List; +@ApiStatus.Experimental public class DefaultWaxingDisplay extends BasicDisplay { public DefaultWaxingDisplay(EntryStack in, EntryStack out) { this(Collections.singletonList(EntryIngredient.of(in)), Collections.singletonList(EntryIngredient.of(out))); } - + public DefaultWaxingDisplay(List inputs, List outputs) { super(inputs, outputs); } -- cgit