@author Gregorius Techneticies
| 26 | * @author Gregorius Techneticies |
| 27 | */ |
| 28 | public interface IItemUpdatable { |
| 29 | /** Updates the Data of the ItemStack. Not called every tick but instead called whenever something important happens to the Stack. */ |
| 30 | public void updateItemStack(ItemStack aStack); |
| 31 | /** Updates the Data of the ItemStack. Not called every tick but instead called whenever something important happens to the Stack. */ |
| 32 | public void updateItemStack(ItemStack aStack, World aWorld, int aX, int aY, int aZ); |
| 33 | } |
no outgoing calls
no test coverage detected