2020-05-23 14:02:38 +02:00
|
|
|
package com.simibubi.create.content;
|
2019-07-11 09:03:08 +02:00
|
|
|
|
2020-05-15 04:32:36 +02:00
|
|
|
import java.util.EnumSet;
|
2020-05-13 01:11:07 +02:00
|
|
|
|
2020-05-23 14:02:38 +02:00
|
|
|
import com.simibubi.create.AllBlocks;
|
|
|
|
import com.simibubi.create.foundation.item.CreateItemGroupBase;
|
2019-09-12 10:00:15 +02:00
|
|
|
|
2019-07-11 09:03:08 +02:00
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
|
2020-05-12 14:06:50 +02:00
|
|
|
public class CreateItemGroup extends CreateItemGroupBase {
|
2019-07-11 09:03:08 +02:00
|
|
|
|
|
|
|
public CreateItemGroup() {
|
2020-05-12 14:06:50 +02:00
|
|
|
super("base");
|
2019-07-11 09:03:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2020-05-23 14:02:38 +02:00
|
|
|
protected EnumSet<AllSections> getSections() {
|
|
|
|
return EnumSet.complementOf(EnumSet.of(AllSections.PALETTES));
|
2019-12-19 22:35:45 +01:00
|
|
|
}
|
|
|
|
|
2020-05-12 14:06:50 +02:00
|
|
|
@Override
|
|
|
|
public ItemStack createIcon() {
|
2020-05-22 20:12:53 +02:00
|
|
|
return AllBlocks.COGWHEEL.asStack();
|
2019-09-12 10:00:15 +02:00
|
|
|
}
|
2019-12-19 22:35:45 +01:00
|
|
|
|
2019-07-11 09:03:08 +02:00
|
|
|
}
|