0

import code

This commit is contained in:
2021-05-03 21:53:45 +03:00
commit e658de7279
5803 changed files with 498928 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
package net.minecraft.block;
import net.minecraft.init.Items;
import net.minecraft.item.Item;
public class BlockCarrot extends BlockCrops
{
protected Item getSeed()
{
return Items.carrot;
}
protected Item getCrop()
{
return Items.carrot;
}
}