Package de.kentoj.scrowlib.economy
Interface EconomyService
- All Known Implementing Classes:
InMemoryEconomyService,PostgresEconomyService
public interface EconomyService
-
Method Summary
Modifier and TypeMethodDescriptionvoiddepositCoins(UUID playerId, int amount) intvoidbooleantryWithdrawCoins(UUID playerId, int amount)
-
Method Details
-
getCoins
- Throws:
IllegalArgumentException- if amount is less than 0
-
depositCoins
- Parameters:
playerId- uuid of player- Throws:
IllegalArgumentException- if amount is less than 0
-
tryWithdrawCoins
- Parameters:
playerId- uuid of player- Returns:
- true on success, false on insufficient funds
- Throws:
IllegalArgumentException- if amount is less than 0
-
setCoins
- Parameters:
playerId- uuid of player- Throws:
IllegalArgumentException- if amount is less than 0
-