From 00d7f27d0ac484f90cf7aaff9f4ab7b39562ce78 Mon Sep 17 00:00:00 2001 From: Irmuun Date: Fri, 5 Mar 2021 17:28:38 -0800 Subject: [PATCH] adds HealthBarUpdated event and the corresponding mixin checkstyle --- .../runelite/api/events/HealthBarUpdated.java | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/runelite-api/src/main/java/net/runelite/api/events/HealthBarUpdated.java b/runelite-api/src/main/java/net/runelite/api/events/HealthBarUpdated.java index 127dbb2dbe..9fe9dabf53 100644 --- a/runelite-api/src/main/java/net/runelite/api/events/HealthBarUpdated.java +++ b/runelite-api/src/main/java/net/runelite/api/events/HealthBarUpdated.java @@ -24,9 +24,9 @@ */ package net.runelite.api.events; +import lombok.Data; import net.runelite.api.Actor; import net.runelite.api.Hitsplat; -import lombok.Data; /** * An event called when an {@link Actor} health bar is updated from a {@link Hitsplat}. @@ -34,12 +34,12 @@ import lombok.Data; @Data public class HealthBarUpdated { - /** - * The actor the hitsplat was applied to. - */ - private Actor actor; - /** - * The updated health ratio. - */ - private int healthRatio; -} \ No newline at end of file + /** + * The actor the hitsplat was applied to. + */ + private Actor actor; + /** + * The updated health ratio. + */ + private int healthRatio; +}