28public class ItemContainerInteractionEvent
extends InteractionEvent {
32 public final int interfaceId;
34 public final int removeSlot;
36 public final int removeId;
38 public ItemContainerInteractionEvent(
int id,
int interfaceId,
int removeSlot,
int removeId) {
39 super(InteractionType.ITEM_CONTAINER_INTERACTION_EVENT);
41 this.interfaceId = interfaceId;
42 this.removeSlot = removeSlot;
43 this.removeId = removeId;