This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.blocklings.models; | |
import net.minecraft.client.model.ModelBase; | |
import net.minecraft.client.model.ModelRenderer; | |
import net.minecraft.entity.Entity; | |
import net.minecraft.entity.EntityLivingBase; | |
import com.blocklings.entity.EntityBlockling; | |
public class ModelBlockling extends ModelBase { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.blocklings.network; | |
import io.netty.buffer.ByteBufOutputStream; | |
import io.netty.buffer.Unpooled; | |
import java.io.IOException; | |
import net.minecraft.entity.Entity; | |
import com.blocklings.entity.EntityBlockling; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.blocklings.network; | |
import io.netty.buffer.ByteBuf; | |
import io.netty.buffer.ByteBufInputStream; | |
import java.io.IOException; | |
import net.minecraft.client.Minecraft; | |
import net.minecraft.entity.Entity; | |
import net.minecraft.world.World; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.blocklings.network; | |
import java.io.IOException; | |
import com.blocklings.main.Blocklings; | |
import cpw.mods.fml.common.eventhandler.SubscribeEvent; | |
import cpw.mods.fml.common.network.FMLNetworkEvent.ClientCustomPacketEvent; | |
public class ClientPacketHandler extends ServerPacketHandler { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.blocklings.network; | |
import io.netty.buffer.ByteBuf; | |
import io.netty.buffer.ByteBufInputStream; | |
import java.io.IOException; | |
import net.minecraft.entity.player.EntityPlayerMP; | |
import com.blocklings.main.Blocklings; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.blocklings.network; | |
import java.io.IOException; | |
import net.minecraft.entity.player.EntityPlayerMP; | |
import net.minecraft.network.NetHandlerPlayServer; | |
import com.blocklings.main.Blocklings; | |
import cpw.mods.fml.common.eventhandler.SubscribeEvent; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.blocklings.models; | |
import net.minecraft.client.model.ModelBase; | |
import net.minecraft.client.model.ModelRenderer; | |
import net.minecraft.entity.Entity; | |
import net.minecraft.entity.EntityLivingBase; | |
import com.blocklings.entity.EntityBlockling; | |
public class ModelBlockling extends ModelBase { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.blocklings.entity; | |
import net.minecraft.entity.EntityList; | |
import net.minecraft.entity.EnumCreatureType; | |
import net.minecraft.world.biome.BiomeGenBase; | |
import com.blocklings.main.Blocklings; | |
import cpw.mods.fml.common.registry.EntityRegistry; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.blocklings.entity; | |
import java.util.List; | |
import java.util.Random; | |
import net.minecraft.client.Minecraft; | |
import net.minecraft.client.gui.GuiNewChat; | |
import net.minecraft.entity.Entity; | |
import net.minecraft.entity.EntityAgeable; | |
import net.minecraft.entity.EntityLivingBase; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.blocklings.main; | |
import net.minecraft.creativetab.CreativeTabs; | |
import net.minecraft.init.Items; | |
import net.minecraft.item.Item; | |
import com.blocklings.crafting.RecipeCreator; | |
import com.blocklings.entity.RegisterBlockling; | |
import com.blocklings.items.ItemCobblestoneUpgrade; | |
import com.blocklings.items.ItemDiamondUpgrade; |
NewerOlder