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