RuneHive-Tarnish
Neural OSRS Enhancement Framework
Loading...
Searching...
No Matches
ItemContainerContextMenuEvent.java
1package com.osroyale.game.event.impl;
2
3import com.osroyale.game.event.Event;
4
30
31public class ItemContainerContextMenuEvent implements Event {
32
33 private final int type;
34 private final int interfaceId;
35 private final int removeSlot;
36 private final int removeId;
37 private final int amount;
38
39 public ItemContainerContextMenuEvent(int type, int interfaceId, int removeSlot, int removeId) {
40 this(type, interfaceId, removeSlot, removeId, 0);
41 }
42
43 public ItemContainerContextMenuEvent(int type, int interfaceId, int removeSlot, int removeId, int amount) {
44 this.type = type;
45 this.interfaceId = interfaceId;
46 this.removeSlot = removeSlot;
47 this.removeId = removeId;
48 this.amount = amount;
49 }
50
51 public int getType() {
52 return type;
53 }
54
55 public int getInterfaceId() {
56 return interfaceId;
57 }
58
59 public int getRemoveSlot() {
60 return removeSlot;
61 }
62
63 public int getRemoveId() {
64 return removeId;
65 }
66
67 public int getAmount() {
68 return amount;
69 }
70}