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