mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
15 lines
356 B
Java
15 lines
356 B
Java
package com.hbm.items;
|
|
|
|
import com.hbm.render.anim.BusAnimation;
|
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
|
import net.minecraft.item.ItemStack;
|
|
import net.minecraft.nbt.NBTTagCompound;
|
|
|
|
public interface IAnimatedItem {
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
public BusAnimation getAnimation(NBTTagCompound data, ItemStack stack);
|
|
}
|