blob: dc95dc1da016038e51585dbdfbf3065ff99e036d [file] [log] [blame] [raw]
package com.legacy.aether.blocks;
import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
public class BlockAether extends Block {
public BlockAether(Material material, String texture) {
super(material);
this.setBlockTextureName(texture);
}
}