From 2250aa8b2a64ea1f1850b74c5f4f34ffa617609e Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal002@users.noreply.github.com> Date: Wed, 29 May 2024 07:43:22 +0200 Subject: Feature: Trophy Fish Display (#1754) Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com> --- .../at/hannibal2/skyhanni/events/fishing/TrophyFishCaughtEvent.kt | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/main/java/at/hannibal2/skyhanni/events/fishing/TrophyFishCaughtEvent.kt (limited to 'src/main/java/at/hannibal2/skyhanni/events') diff --git a/src/main/java/at/hannibal2/skyhanni/events/fishing/TrophyFishCaughtEvent.kt b/src/main/java/at/hannibal2/skyhanni/events/fishing/TrophyFishCaughtEvent.kt new file mode 100644 index 000000000..358b057bc --- /dev/null +++ b/src/main/java/at/hannibal2/skyhanni/events/fishing/TrophyFishCaughtEvent.kt @@ -0,0 +1,7 @@ +package at.hannibal2.skyhanni.events.fishing + +import at.hannibal2.skyhanni.events.LorenzEvent +import at.hannibal2.skyhanni.features.fishing.trophy.TrophyRarity + +// trophyFishName is NO Neu Internal Name +class TrophyFishCaughtEvent(val trophyFishName: String, val rarity: TrophyRarity) : LorenzEvent() -- cgit