RuneHive-Game
Loading...
Searching...
No Matches
ThirdObjectClick.java
Go to the documentation of this file.
1
package
com.runehive.content.event.impl;
2
3
import
com.runehive.game.world.object.GameObject;
4
5
public
class
ThirdObjectClick
extends
ObjectInteractionEvent
{
6
7
public
ThirdObjectClick
(
GameObject
object
) {
8
super(
InteractionType
.
THIRD_CLICK_OBJECT
,
object
, 2);
9
}
10
11
}
com.runehive.content.event.impl.ObjectInteractionEvent.ObjectInteractionEvent
ObjectInteractionEvent(InteractionType type, GameObject object, int opcode)
Definition
ObjectInteractionEvent.java:11
com.runehive.content.event.impl.ThirdObjectClick.ThirdObjectClick
ThirdObjectClick(GameObject object)
Definition
ThirdObjectClick.java:7
com.runehive.content.event.InteractionEvent.InteractionType
Definition
InteractionEvent.java:5
com.runehive.content.event.InteractionEvent.InteractionType.THIRD_CLICK_OBJECT
THIRD_CLICK_OBJECT
Definition
InteractionEvent.java:8
com.runehive.game.world.object.GameObject
Represents a game object.
Definition
GameObject.java:13