aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/repo/recipes/GenericRecipeRenderer.kt
diff options
context:
space:
mode:
authorLinnea Gräf <nea@nea.moe>2025-05-09 19:29:26 +0200
committerLinnea Gräf <nea@nea.moe>2025-05-09 22:03:43 +0200
commit62bca13bff1fe6302d31cad3ee0b4bed82ddca4b (patch)
tree6481380234763e8f05714468ad97766c4b090d8d /src/main/kotlin/repo/recipes/GenericRecipeRenderer.kt
parentf925bd2a8d10d017a8aabb637ccd6546ad9cc123 (diff)
downloadFirmament-62bca13bff1fe6302d31cad3ee0b4bed82ddca4b.tar.gz
Firmament-62bca13bff1fe6302d31cad3ee0b4bed82ddca4b.tar.bz2
Firmament-62bca13bff1fe6302d31cad3ee0b4bed82ddca4b.zip
refactor: forge recipe as item list agnostic
Diffstat (limited to 'src/main/kotlin/repo/recipes/GenericRecipeRenderer.kt')
-rw-r--r--src/main/kotlin/repo/recipes/GenericRecipeRenderer.kt1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main/kotlin/repo/recipes/GenericRecipeRenderer.kt b/src/main/kotlin/repo/recipes/GenericRecipeRenderer.kt
index 6768b4e..5510f4c 100644
--- a/src/main/kotlin/repo/recipes/GenericRecipeRenderer.kt
+++ b/src/main/kotlin/repo/recipes/GenericRecipeRenderer.kt
@@ -16,5 +16,6 @@ interface GenericRecipeRenderer<T : NEURecipe> {
val title: Text
val identifier: Identifier
fun findAllRecipes(neuRepository: NEURepository): Iterable<T>
+ val displayHeight: Int get() = 66
val typ: Class<T>
}