// ------------- Custom recipes
// you can even register your own custom IRecipe class to match complicated inputs - see for example RecipeFireworks
// There are a few useful vanilla recipes and Serializers you can base your Recipe on
// eg AbstractCookingRecipe, SpecialRecipe and SpecialRecipeSerializer
// or go the whole hog and write your own. Lots of vanilla inspiration to keep you on the right track.
// All you need to do is register your serializer (assuming you know how to use @SubscribeEvent)
// @SubscribeEvent
// public void registerRecipeSerializers(RegistryEvent.Register<IRecipeSerializer<?>> event) {
// event.getRegistry().register(yourRecipeSerializer);
// }
-TGG