Advertisement
TitanChase

Untitled

Sep 26th, 2014
239
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. for (MachineState state : MachineState.values())
  2. {
  3. frontIcons[state.getID()] = iconRegister.registerIcon(Textures.Block.Machine.ChemicalFurnaceFront.concat(state.getTextureSuffix()));
  4. topIcons[state.getID()] = iconRegister.registerIcon(Textures.Block.Machine.Fan.concat(state.getTextureSuffix()));
  5. sideIcons[state.getID()] = iconRegister.registerIcon(Textures.Block.Machine.ChemicalFurnaceSide.concat(state.getTextureSuffix()));
  6. backIcons[state.getID()] = iconRegister.registerIcon(Textures.Block.Machine.ChemicalFurnaceSide.concat(state.getTextureSuffix()));
  7. bottomIcons[state.getID()] = iconRegister.registerIcon(Textures.Block.Machine.ChemicalFurnaceSide.concat(state.getTextureSuffix()));
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement