RuneHive-Tarnish
Neural OSRS Enhancement Framework
Loading...
Searching...
No Matches
Currency.java
1package com.osroyale.content.store.currency;
2
3import com.osroyale.game.world.entity.mob.player.Player;
4
11public interface Currency {
12
17 boolean tangible();
18
24 boolean takeCurrency(Player player, int amount);
25
31 void recieveCurrency(Player player, int amount);
32
40
48 boolean canRecieveCurrency(Player player);
49
53 String toString();
54}
55
boolean takeCurrency(Player player, int amount)
void recieveCurrency(Player player, int amount)