Package crazypants.enderio.machine.spawnguard

Examples of crazypants.enderio.machine.spawnguard.SpawnGuardRenderer


    AttractorRenderer attRen = new AttractorRenderer();
    RenderingRegistry.registerBlockHandler(attRen);
    ClientRegistry.bindTileEntitySpecialRenderer(TileAttractor.class, attRen);
    MinecraftForgeClient.registerItemRenderer(Item.getItemFromBlock(EnderIO.blockAttractor), attRen);
       
    SpawnGuardRenderer sgr = new SpawnGuardRenderer();
    BlockSpawnGuard.renderId = BlockAttractor.renderId;
    ClientRegistry.bindTileEntitySpecialRenderer(TileSpawnGuard.class, sgr);
    MinecraftForgeClient.registerItemRenderer(Item.getItemFromBlock(EnderIO.blockSpawnGuard), sgr);
   
    ExperienceObliskRenderer eor = new ExperienceObliskRenderer();
View Full Code Here

TOP

Related Classes of crazypants.enderio.machine.spawnguard.SpawnGuardRenderer

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.