package net.nyagosu.minecraftmodexample.example000_009.e002_glow_block;
import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
import net.nyagosu.minecraftmodexample.MinecraftModExample;
public class BlockGlowBlock extends Block {
public BlockGlowBlock()
{
super(Material.GROUND);
this.setCreativeTab(MinecraftModExample.base_tab);
//明るさの指定。1.0F = レベル15 (最大値)
this.setLightLevel(1.0F);
}
}