Fruitful work on .txt document parser
This commit is contained in:
parent
815dc167dd
commit
1c806c4328
13 changed files with 557 additions and 17 deletions
|
@ -0,0 +1,21 @@
|
|||
package WayofTime.alchemicalWizardry.book.entries;
|
||||
|
||||
import net.minecraft.item.crafting.IRecipe;
|
||||
|
||||
public class EntryCraftingRecipeCustomText extends EntryCraftingRecipe implements IEntryCustomText
|
||||
{
|
||||
|
||||
public EntryCraftingRecipeCustomText(IRecipe recipes)
|
||||
{
|
||||
super(recipes);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getText()
|
||||
{
|
||||
return "";
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setText(String str){}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue