RuneHive-Game
Loading...
Searching...
No Matches
ItemContainerContextMenuEvent.java
Go to the documentation of this file.
1package com.runehive.game.event.impl;
2
3import com.runehive.game.event.Event;
4
5public class ItemContainerContextMenuEvent implements Event {
6
7 private final int type;
8 private final int interfaceId;
9 private final int removeSlot;
10 private final int removeId;
11 private final int amount;
12
16
18 this.type = type;
19 this.interfaceId = interfaceId;
20 this.removeSlot = removeSlot;
21 this.removeId = removeId;
22 this.amount = amount;
23 }
24
25 public int getType() {
26 return type;
27 }
28
29 public int getInterfaceId() {
30 return interfaceId;
31 }
32
33 public int getRemoveSlot() {
34 return removeSlot;
35 }
36
37 public int getRemoveId() {
38 return removeId;
39 }
40
41 public int getAmount() {
42 return amount;
43 }
44}
ItemContainerContextMenuEvent(int type, int interfaceId, int removeSlot, int removeId)
ItemContainerContextMenuEvent(int type, int interfaceId, int removeSlot, int removeId, int amount)
Definition Event.kt:9