mirror of
https://github.com/Creators-of-Create/Create.git
synced 2024-11-16 07:24:32 +01:00
17 lines
337 B
Java
17 lines
337 B
Java
|
package com.simibubi.create;
|
||
|
|
||
|
import net.minecraft.item.ItemGroup;
|
||
|
import net.minecraft.item.ItemStack;
|
||
|
|
||
|
public final class CreateItemGroup extends ItemGroup {
|
||
|
|
||
|
public CreateItemGroup() {
|
||
|
super(getGroupCountSafe(), Create.ID);
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public ItemStack createIcon() {
|
||
|
return new ItemStack(AllItems.SYMMETRY_WAND.get());
|
||
|
}
|
||
|
}
|