8 lines
218 B
Java
8 lines
218 B
Java
package com.alttd.fishingevent.objects;
|
|
|
|
import com.alttd.fishingevent.fish.Fish;
|
|
import org.bukkit.inventory.ItemStack;
|
|
|
|
public record CaughtFishData(Fish fish, ItemStack fishItem, double length, int pointsValue) {
|
|
}
|