mirror of
https://github.com/Creators-of-Create/Create.git
synced 2024-11-16 15:34:39 +01:00
27 lines
532 B
Java
27 lines
532 B
Java
package com.simibubi.create.content;
|
|
|
|
import java.util.EnumSet;
|
|
|
|
import com.simibubi.create.AllBlocks;
|
|
import com.simibubi.create.foundation.item.CreateItemGroupBase;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
public class CreateItemGroup extends CreateItemGroupBase {
|
|
|
|
public CreateItemGroup() {
|
|
super("base");
|
|
}
|
|
|
|
@Override
|
|
protected EnumSet<AllSections> getSections() {
|
|
return EnumSet.complementOf(EnumSet.of(AllSections.PALETTES));
|
|
}
|
|
|
|
@Override
|
|
public ItemStack createIcon() {
|
|
return AllBlocks.COGWHEEL.asStack();
|
|
}
|
|
|
|
}
|