
Added newlines at the end of files Fixed improper line endings on some files Matched start - end comments Added some missing comments for diffs Fixed syntax on some spots Minimized some diff Removed some no longer used files Added comment on some required files with no changes Fixed imports of items used once Added imports for items used more than once
15 lines
275 B
Java
15 lines
275 B
Java
package net.minecraft.server;
|
|
|
|
public interface CraftingRecipe {
|
|
|
|
boolean a(InventoryCrafting inventorycrafting);
|
|
|
|
ItemStack b(InventoryCrafting inventorycrafting);
|
|
|
|
int a();
|
|
|
|
ItemStack b();
|
|
|
|
org.bukkit.inventory.Recipe toBukkitRecipe(); // CraftBukkit
|
|
}
|