| 1 | package net.gamelog.suntrot.recipe; | 
| 2 | |
| 3 | import net.minecraft.registry.Registries; | 
| 4 | import net.minecraft.registry.Registry; | 
| 5 | import net.minecraft.util.Identifier; | 
| 6 | |
| 7 | public class SuntrotRecipes { | 
| 8 | public static void registerRecipes(){ | 
| 9 | Registry.register(Registries.RECIPE_SERIALIZER, SewingRecipe.SewingRecipeSerializer.ID, | 
| 10 | SewingRecipe.SewingRecipeSerializer.INSTANCE); | 
| 11 | Registry.register(Registries.RECIPE_TYPE, new Identifier("sewing_recipe", SewingRecipe.Type.ID), SewingRecipe.Type.INSTANCE); | 
| 12 | } | 
| 13 | } |