RuneHive-Game
Loading...
Searching...
No Matches
ItemContainerInteractionEvent.java
Go to the documentation of this file.
1package com.runehive.content.event.impl;
2
3import com.runehive.content.event.InteractionEvent;
4
5/**
6 * @author <a href="http://www.rune-server.org/members/stand+up/">Stand Up</a>
7 * @since 12-2-2017.
8 */
10
11 public final int id;
12
13 public final int interfaceId;
14
15 public final int removeSlot;
16
17 public final int removeId;
18
21 this.id = id;
22 this.interfaceId = interfaceId;
23 this.removeSlot = removeSlot;
24 this.removeId = removeId;
25 }
26}
ItemContainerInteractionEvent(int id, int interfaceId, int removeSlot, int removeId)