ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/jei/booklet/BookletRecipeHandler.java

46 lines
1.2 KiB
Java
Raw Normal View History

2016-01-16 20:06:25 +01:00
/*
2016-05-16 22:52:27 +02:00
* This file ("BookletRecipeHandler.java") is part of the Actually Additions mod for Minecraft.
2016-01-16 20:06:25 +01:00
* It is created and owned by Ellpeck and distributed
* under the Actually Additions License to be found at
2016-05-16 22:52:27 +02:00
* http://ellpeck.de/actaddlicense
2016-01-16 20:06:25 +01:00
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2016-05-16 22:54:42 +02:00
* © 2015-2016 Ellpeck
2016-01-16 20:06:25 +01:00
*/
package de.ellpeck.actuallyadditions.mod.jei.booklet;
import de.ellpeck.actuallyadditions.api.booklet.BookletPage;
import mezz.jei.api.recipe.IRecipeHandler;
import mezz.jei.api.recipe.IRecipeWrapper;
public class BookletRecipeHandler implements IRecipeHandler<BookletPage>{
2016-01-16 20:06:25 +01:00
@Override
public Class getRecipeClass(){
return BookletPage.class;
}
@Override
public String getRecipeCategoryUid(BookletPage recipe){
return this.getRecipeCategoryUid();
}
2016-01-16 20:06:25 +01:00
@Override
public String getRecipeCategoryUid(){
return BookletRecipeCategory.NAME;
2016-01-16 20:06:25 +01:00
}
2016-01-16 20:06:25 +01:00
@Override
public IRecipeWrapper getRecipeWrapper(BookletPage recipe){
2016-01-16 20:06:25 +01:00
return new BookletRecipeWrapper(recipe);
}
@Override
public boolean isRecipeValid(BookletPage recipe){
2016-01-16 20:06:25 +01:00
return true;
}
}