2013-08-22 17:36:31 +02:00
|
|
|
package ic2.api.item;
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
|
|
|
|
public interface IItemHudInfo {
|
|
|
|
|
2014-02-14 23:55:34 +01:00
|
|
|
/*
|
2013-08-22 17:36:31 +02:00
|
|
|
Add Info to Nano- and Quantum-Suit Helm Hud
|
|
|
|
for itemStack
|
2014-02-14 23:55:34 +01:00
|
|
|
|
2013-08-22 17:36:31 +02:00
|
|
|
@Override
|
|
|
|
public List<String> getHudInfo(ItemStack itemStack) {
|
|
|
|
List<String> info = new LinkedList<String>();
|
|
|
|
info.add("i am a Cool Item");
|
|
|
|
info.add("and have Cool info");
|
|
|
|
return info;
|
|
|
|
}
|
2014-02-14 23:55:34 +01:00
|
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
public List<String> getHudInfo(ItemStack itemStack);
|
|
|
|
|
2013-08-22 17:36:31 +02:00
|
|
|
}
|