RuneHive-Game
Loading...
Searching...
No Matches
OnKillEvent.java
Go to the documentation of this file.
1package com.runehive.content.event.impl;
2
3import com.runehive.game.world.entity.mob.Mob;
4import com.runehive.content.event.InteractionEvent;
5
6/**
7 * @author <a href="http://www.rune-server.org/members/stand+up/">Stand Up</a>
8 * @since 16-6-2017.
9 */
10public final class OnKillEvent extends InteractionEvent {
11
12 private final Mob victim;
13
16 this.victim = victim;
17 }
18
19 public Mob getVictim() {
20 return victim;
21 }
22}
Handles the mob class.
Definition Mob.java:66