mirror of
https://github.com/Xiao-MoMi/Custom-Fishing.git
synced 2025-12-19 15:09:24 +00:00
12 lines
299 B
Java
12 lines
299 B
Java
package net.momirealms.customfishing.requirements;
|
|
|
|
import org.bukkit.Location;
|
|
import org.bukkit.entity.Player;
|
|
|
|
public record FishingCondition(Player player, Location location) {
|
|
|
|
public Location getLocation() { return location; }
|
|
public Player getPlayer() {
|
|
return player;
|
|
}
|
|
} |