blob: 6bbddbe632e4d960b25220459a68f2a4751dfc68 [file] [log] [blame] [raw]
package com.gildedgames.the_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);
}
}