Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package TechnicianLP.FactorialRevolution.common.blocks.blockstate;
- import net.minecraft.block.properties.IProperty;
- import net.minecraft.block.state.IBlockState;
- public class IBlockStateWrapper {
- public IBlockState state;
- public IBlockStateWrapper(IBlockState state) {
- this.state = state;
- }
- public <T extends Comparable<T>> T getValue(IProperty<T> property) {
- return state.getValue(property);
- }
- public <T extends Comparable<T>, V extends T> IBlockState withProperty(IProperty<T> property, V value) {
- state = state.withProperty(property, value);
- return state;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement