Start rewrite

This commit is contained in:
2022-07-13 00:39:37 -04:00
commit 89e372e7f8
438 changed files with 4707 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
package tech.nevets.vplus.items;
import net.minecraft.item.ItemGroup;
import net.minecraft.item.ItemStack;
public class VPItemGroups extends ItemGroup {
public VPItemGroups(int index, String id) {
super(index, id);
}
@Override
public ItemStack createIcon() {
return null;
}
}