diff options
| author | Linnea Gräf <nea@nea.moe> | 2025-11-20 12:49:54 +0100 |
|---|---|---|
| committer | Linnea Gräf <nea@nea.moe> | 2025-11-20 12:49:54 +0100 |
| commit | 709c32ed2788c15f9f03a1bcbe6648e533e662c6 (patch) | |
| tree | a895baaade1b0c01ce51340a63dfb6d0b5777f9e /src/main/kotlin/repo/recipes/GenericRecipeRenderer.kt | |
| parent | 5d9b084be9af0f97adad002f3389add22ebf07e5 (diff) | |
| download | Firmament-709c32ed2788c15f9f03a1bcbe6648e533e662c6.tar.gz Firmament-709c32ed2788c15f9f03a1bcbe6648e533e662c6.tar.bz2 Firmament-709c32ed2788c15f9f03a1bcbe6648e533e662c6.zip | |
feat: basic screen recipe renderer
Diffstat (limited to 'src/main/kotlin/repo/recipes/GenericRecipeRenderer.kt')
| -rw-r--r-- | src/main/kotlin/repo/recipes/GenericRecipeRenderer.kt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main/kotlin/repo/recipes/GenericRecipeRenderer.kt b/src/main/kotlin/repo/recipes/GenericRecipeRenderer.kt index c029494..84f1f48 100644 --- a/src/main/kotlin/repo/recipes/GenericRecipeRenderer.kt +++ b/src/main/kotlin/repo/recipes/GenericRecipeRenderer.kt @@ -16,6 +16,8 @@ interface GenericRecipeRenderer<T : Any> { val title: Component val identifier: ResourceLocation fun findAllRecipes(neuRepository: NEURepository): Iterable<T> + fun discoverExtraRecipes(neuRepository: NEURepository, itemStack: SBItemStack, mustBeInOutputs: Boolean): Iterable<T> = emptyList() val displayHeight: Int get() = 66 + val displayWidth: Int get() = 150 val typ: Class<T> } |
