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