Advertisement
Guest User

Untitled

a guest
May 24th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. package TechnicianLP.FactorialRevolution.common.blocks.blockstate;
  2.  
  3. import net.minecraft.block.properties.IProperty;
  4. import net.minecraft.block.state.IBlockState;
  5.  
  6. public class IBlockStateWrapper {
  7.  
  8. public IBlockState state;
  9.  
  10. public IBlockStateWrapper(IBlockState state) {
  11. this.state = state;
  12. }
  13.  
  14. public <T extends Comparable<T>> T getValue(IProperty<T> property) {
  15. return state.getValue(property);
  16. }
  17.  
  18. public <T extends Comparable<T>, V extends T> IBlockState withProperty(IProperty<T> property, V value) {
  19. state = state.withProperty(property, value);
  20. return state;
  21. }
  22.  
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement