aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/repo/recipes/GenericRecipeRenderer.kt
blob: 9a1aea53257ebd9ce45332a55a80222f7abb1467 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package moe.nea.firmament.repo.recipes

import io.github.moulberry.repo.NEURepository
import io.github.moulberry.repo.data.NEURecipe
import me.shedaniel.math.Rectangle
import net.minecraft.item.ItemStack
import net.minecraft.text.Text
import net.minecraft.util.Identifier
import moe.nea.firmament.repo.SBItemStack

interface GenericRecipeRenderer<T : NEURecipe> {
	fun render(recipe: T, bounds: Rectangle, layouter: RecipeLayouter)
	fun getInputs(recipe: T): Collection<SBItemStack>
	fun getOutputs(recipe: T): Collection<SBItemStack>
	val icon: ItemStack
	val title: Text
	val identifier: Identifier
	fun findAllRecipes(neuRepository: NEURepository): Iterable<T>
}