mirror of
https://gitlab.com/SamB440/rpgregions-2.git
synced 2026-01-03 06:02:09 +00:00
19 lines
306 B
Java
19 lines
306 B
Java
package net.islandearth.rpgregions.rewards;
|
|
|
|
import org.bukkit.entity.Player;
|
|
|
|
public abstract class DiscoveryReward {
|
|
|
|
private final String region;
|
|
|
|
DiscoveryReward(String region) {
|
|
this.region = region;
|
|
}
|
|
|
|
public String getRegion() {
|
|
return region;
|
|
}
|
|
|
|
abstract void award(Player player);
|
|
}
|