net.minecraft.block.state.BlockStateBase Java Examples
The following examples show how to use
net.minecraft.block.state.BlockStateBase.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: MetaBlock.java From minecraft-roguelike with GNU General Public License v3.0 | 5 votes |
public IBlockState getState(){ if(this.state instanceof MetaBlock){ return ((MetaBlock)this.state).getState(); } return (BlockStateBase)this.state; }
Example #2
Source File: WrapperBlockStateBase.java From ClientBase with MIT License | 4 votes |
public WrapperBlockStateBase(BlockStateBase var1) { this.real = var1; }
Example #3
Source File: WrapperBlockStateBase.java From ClientBase with MIT License | 4 votes |
public BlockStateBase unwrap() { return this.real; }