Package net.minecraft.client.entity

Examples of net.minecraft.client.entity.EntityOtherPlayerMP


              entity = null;
             
              if (telemeter.clientClass == EntityPlayerMP.class)
              {
                strName = telemeter.clientName;
                entity = new EntityOtherPlayerMP(screen.driver.getWorldObj(), telemeter.clientGameProfile);
                renderEntity = (Render) RenderManager.instance.entityRenderMap.get(EntityPlayer.class);
              }
              else
              {
                try {
View Full Code Here


    }

    @SideOnly(Side.CLIENT)
    private EntityPlayer createPlayer(World world, String player)
    {
        return new EntityOtherPlayerMP(world, EntityHelperBase.getFullGameProfileFromName(player));
    }
View Full Code Here

TOP

Related Classes of net.minecraft.client.entity.EntityOtherPlayerMP

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.