Add formatEconomy to API

This commit is contained in:
Eric 2019-08-17 14:05:00 +02:00
parent 3c6127138f
commit 24e0f0d064

View File

@ -27,4 +27,11 @@ public abstract class ShopChest extends JavaPlugin {
*/ */
public abstract ShopPlayer wrapPlayer(Player player); public abstract ShopPlayer wrapPlayer(Player player);
/**
* Gets a formatted String for the given amount of money
*
* @param amount the amount of money
* @return the formatted amount
*/
public abstract String formatEconomy(double amount);
} }