mirror of
https://github.com/Jozufozu/Flywheel.git
synced 2025-01-09 13:56:04 +01:00
25 lines
464 B
Java
25 lines
464 B
Java
package com.simibubi.create;
|
|
|
|
import java.util.EnumSet;
|
|
|
|
import com.simibubi.create.modules.Sections;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
public class CreateItemGroup extends CreateItemGroupBase {
|
|
|
|
public CreateItemGroup() {
|
|
super("base");
|
|
}
|
|
|
|
@Override
|
|
protected EnumSet<Sections> getSections() {
|
|
return EnumSet.complementOf(EnumSet.of(Sections.PALETTES));
|
|
}
|
|
|
|
@Override
|
|
public ItemStack createIcon() {
|
|
return AllBlocksNew.COGWHEEL.asStack();
|
|
}
|
|
|
|
}
|