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 player

The player to pay the cost

* @param cost

The cost the player needs to pay

* @return

True 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 plural

Whether to get the plural name or the singular name

* @return

The 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 player

The player to withdraw money from

* @param cost

The amount of money to withdraw

*/ public static void withdraw(Player player, double cost) { economy.withdrawPlayer(player, cost); } }