RuneHive-Game
Loading...
Searching...
No Matches
CommandEvent.java
Go to the documentation of this file.
1
package
com.runehive.game.event.impl;
2
3
import
com.runehive.game.event.Event;
4
import
com.runehive.game.world.entity.mob.player.command.CommandParser;
5
6
public
class
CommandEvent
implements
Event
{
7
8
private
final
CommandParser
parser
;
9
10
public
CommandEvent
(
CommandParser
parser
) {
11
this.parser =
parser
;
12
}
13
14
public
CommandParser
getParser
() {
15
return
parser
;
16
}
17
18
}
com.runehive.game.event.impl.CommandEvent.getParser
CommandParser getParser()
Definition
CommandEvent.java:14
com.runehive.game.event.impl.CommandEvent.parser
final CommandParser parser
Definition
CommandEvent.java:8
com.runehive.game.event.impl.CommandEvent.CommandEvent
CommandEvent(CommandParser parser)
Definition
CommandEvent.java:10
com.runehive.game.world.entity.mob.player.command.CommandParser
Definition
CommandParser.java:9
Event
Definition
Event.kt:9