resonant-induction/archive/java/dark/lib/prefab/invgui/ISlotWatcher.java
2014-01-11 17:44:07 +08:00

9 lines
262 B
Java

package dark.lib.prefab.invgui;
/** Add this to a container class if using WatchedSlot to trigger the container on slot change */
public interface ISlotWatcher
{
/** Will trigger if the watched slot has changed */
public void slotContentsChanged(int slot);
}