ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/blocks/BlockBlackLotus.java

38 lines
1.1 KiB
Java
Raw Normal View History

2015-11-03 16:30:13 +01:00
/*
* This file ("BlockBlackLotus.java") is part of the Actually Additions Mod for Minecraft.
2015-11-03 16:30:13 +01:00
* It is created and owned by Ellpeck and distributed
* under the Actually Additions License to be found at
* http://github.com/Ellpeck/ActuallyAdditions/blob/master/README.md
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
* © 2015 Ellpeck
*/
2015-12-30 22:02:15 +01:00
package de.ellpeck.actuallyadditions.blocks;
2015-11-03 16:30:13 +01:00
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
2015-12-30 22:02:15 +01:00
import de.ellpeck.actuallyadditions.blocks.base.BlockBushBase;
import de.ellpeck.actuallyadditions.util.ModUtil;
2015-11-03 16:30:13 +01:00
import net.minecraft.client.renderer.texture.IIconRegister;
import net.minecraft.util.IIcon;
public class BlockBlackLotus extends BlockBushBase{
2015-11-03 16:30:13 +01:00
public BlockBlackLotus(String name){
super(name);
2015-11-03 16:30:13 +01:00
}
@Override
@SideOnly(Side.CLIENT)
public IIcon getIcon(int side, int meta){
return this.blockIcon;
}
@Override
@SideOnly(Side.CLIENT)
public void registerBlockIcons(IIconRegister iconReg){
this.blockIcon = iconReg.registerIcon(ModUtil.MOD_ID_LOWER+":"+this.getBaseName());
2015-12-01 19:48:09 +01:00
}
2015-11-03 16:30:13 +01:00
}