9
0
mirror of https://github.com/Xiao-MoMi/Custom-Fishing.git synced 2025-12-19 15:09:24 +00:00

1.0-SNAPSHOT

This commit is contained in:
Xiao-MoMi
2022-07-05 15:43:36 +08:00
parent 0938696c28
commit ba6d42f102
38 changed files with 2655 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
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;
}
}