aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/repo/recipes/GenericRecipeRenderer.kt
blob: 5510f4c9a21cfe777a5c49a2261267cdf7f98d87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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>
	val displayHeight: Int get() = 66
	val typ: Class<T>
}