mirror of
https://github.com/Ellpeck/NaturesAura.git
synced 2024-11-05 12:59:08 +01:00
14 lines
434 B
Java
14 lines
434 B
Java
|
package de.ellpeck.naturesaura.blocks;
|
||
|
|
||
|
import de.ellpeck.naturesaura.blocks.tiles.TileEntityWeatherChanger;
|
||
|
import net.minecraft.block.Blocks;
|
||
|
import net.minecraft.tileentity.TileEntity;
|
||
|
|
||
|
import java.util.function.Supplier;
|
||
|
|
||
|
public class BlockWeatherChanger extends BlockContainerImpl {
|
||
|
public BlockWeatherChanger() {
|
||
|
super("weather_changer", TileEntityWeatherChanger::new, Properties.from(Blocks.STONE_BRICKS));
|
||
|
}
|
||
|
}
|