steel_registry/recipe/mod.rs
1//! Recipe system for crafting and other recipe types.
2//!
3//! This module provides the data structures and matching logic for Minecraft recipes.
4//! Currently supports crafting recipes (shaped and shapeless).
5
6mod crafting;
7mod ingredient;
8mod registry;
9
10pub use crafting::{
11 CraftingCategory, CraftingInput, CraftingRecipe, PositionedCraftingInput, RecipeResult,
12 ShapedRecipe, ShapelessRecipe,
13};
14pub use ingredient::Ingredient;
15pub use registry::RecipeRegistry;