mirror of
https://github.com/Jozufozu/Flywheel.git
synced 2025-01-10 14:26:10 +01:00
bf57058e4e
- Set up datagen for basic palette models and blockstates - Overgrown blocks now follow foliage colour - Paved blocks now connect vertically
26 lines
513 B
Java
26 lines
513 B
Java
package com.simibubi.create;
|
|
|
|
import java.util.Collection;
|
|
|
|
import com.tterrag.registrate.util.entry.RegistryEntry;
|
|
|
|
import net.minecraft.block.Block;
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
public class CreateItemGroup extends CreateItemGroupBase {
|
|
|
|
public CreateItemGroup() {
|
|
super("base");
|
|
}
|
|
|
|
@Override
|
|
protected Collection<RegistryEntry<Block>> getBlocks() {
|
|
return Create.registrate().getAll(Block.class);
|
|
}
|
|
|
|
@Override
|
|
public ItemStack createIcon() {
|
|
return AllBlocksNew.COGWHEEL.asStack();
|
|
}
|
|
|
|
}
|