api: change LocalPlayerDeath event to PlayerDeath

This commit is contained in:
Adam
2019-11-10 14:33:03 -05:00
parent ff6ae58898
commit 52c3a1902f
4 changed files with 19 additions and 11 deletions

View File

@@ -24,9 +24,14 @@
*/
package net.runelite.api.events;
import lombok.Value;
import net.runelite.api.Player;
/**
* An event when the local player dies.
* An event fired when a player dies.
*/
public class LocalPlayerDeath
@Value
public class PlayerDeath
{
private final Player player;
}