mirror of
https://github.com/Ellpeck/NaturesAura.git
synced 2024-11-05 04:49:10 +01:00
10 lines
367 B
Java
10 lines
367 B
Java
package de.ellpeck.naturesaura.blocks;
|
|
|
|
import de.ellpeck.naturesaura.blocks.tiles.TileEntityPotionGenerator;
|
|
import net.minecraft.block.material.Material;
|
|
|
|
public class BlockPotionGenerator extends BlockContainerImpl {
|
|
public BlockPotionGenerator() {
|
|
super(Material.ROCK, "potion_generator", TileEntityPotionGenerator.class, "potion_generator");
|
|
}
|
|
}
|