RuneHive-Game
Loading...
Searching...
No Matches
ObjectInteractionEvent.java
Go to the documentation of this file.
1package com.runehive.content.event.impl;
2
3import com.runehive.content.event.InteractionEvent;
4import com.runehive.game.world.object.GameObject;
5
7
8 private final GameObject object;
9 private final int opcode;
10
12 super(type);
13 this.object = object;
14 this.opcode = opcode;
15 }
16
18 return object;
19 }
20
21 public int getOpcode() {
22 return opcode;
23 }
24
25}
ObjectInteractionEvent(InteractionType type, GameObject object, int opcode)