RuneHive-Game
Loading...
Searching...
No Matches
ItemContainerInteractionEvent.java
Go to the documentation of this file.
1
package
com.runehive.content.event.impl;
2
3
import
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
*/
9
public
class
ItemContainerInteractionEvent
extends
InteractionEvent
{
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
19
public
ItemContainerInteractionEvent
(
int
id
,
int
interfaceId
,
int
removeSlot
,
int
removeId
) {
20
super(
InteractionType
.
ITEM_CONTAINER_INTERACTION_EVENT
);
21
this.id =
id
;
22
this.interfaceId =
interfaceId
;
23
this.removeSlot =
removeSlot
;
24
this.removeId =
removeId
;
25
}
26
}
com.runehive.content.event.InteractionEvent.InteractionEvent
InteractionEvent(InteractionType type)
Definition
InteractionEvent.java:41
com.runehive.content.event.impl.ItemContainerInteractionEvent.id
final int id
Definition
ItemContainerInteractionEvent.java:11
com.runehive.content.event.impl.ItemContainerInteractionEvent.interfaceId
final int interfaceId
Definition
ItemContainerInteractionEvent.java:13
com.runehive.content.event.impl.ItemContainerInteractionEvent.removeId
final int removeId
Definition
ItemContainerInteractionEvent.java:17
com.runehive.content.event.impl.ItemContainerInteractionEvent.ItemContainerInteractionEvent
ItemContainerInteractionEvent(int id, int interfaceId, int removeSlot, int removeId)
Definition
ItemContainerInteractionEvent.java:19
com.runehive.content.event.impl.ItemContainerInteractionEvent.removeSlot
final int removeSlot
Definition
ItemContainerInteractionEvent.java:15
com.runehive.content.event.InteractionEvent.InteractionType
Definition
InteractionEvent.java:5
com.runehive.content.event.InteractionEvent.InteractionType.ITEM_CONTAINER_INTERACTION_EVENT
ITEM_CONTAINER_INTERACTION_EVENT
Definition
InteractionEvent.java:26