package net.knarcraft.permissionsigns.manager; import net.milkbowl.vault.economy.Economy; import org.bukkit.OfflinePlayer; import org.bukkit.entity.Player; /** * A manager that performs all Economy tasks */ public class EconomyManager { private static Economy economy; /** * Initializes the economy manager * * @param economy
The economy object to use for everything economy-related
*/ public static void initialize(Economy economy) { EconomyManager.economy = economy; } /** * Checks whether the given player can afford the given cost * * @param playerThe player to pay the cost
* @param costThe cost the player needs to pay
* @returnTrue if the player is able to afford the cost
*/ public static boolean canAfford(OfflinePlayer player, double cost) { return economy.has(player, cost); } /** * Gets the name of the used currency * * @param pluralWhether to get the plural name or the singular name
* @returnThe name of the used currency
*/ public static String getCurrency(boolean plural) { if (plural) { return economy.currencyNamePlural(); } else { return economy.currencyNameSingular(); } } /** * Withdraws the given cost from the given player's account * * @param playerThe player to withdraw money from
* @param costThe amount of money to withdraw
*/ public static void withdraw(Player player, double cost) { economy.withdrawPlayer(player, cost); } }