Java源码示例:net.minecraft.block.state.BlockStateBase

示例1
public IBlockState getState(){
	
	if(this.state instanceof MetaBlock){
		return ((MetaBlock)this.state).getState();
	}
	
	return (BlockStateBase)this.state;
}
 
示例2
public WrapperBlockStateBase(BlockStateBase var1) {
    this.real = var1;
}
 
示例3
public BlockStateBase unwrap() {
    return this.real;
}