RuneHive-Tarnish
Neural OSRS Enhancement Framework
Loading...
Searching...
No Matches
Gamble.java
1
package
com.osroyale.content.gambling;
2
3
import
com.osroyale.game.world.entity.mob.player.Player;
4
28
29
public
abstract
class
Gamble {
30
34
private
Player
host, opponent;
35
36
public
Player
getHost() {
37
return
host;
38
}
39
40
public
Player
getOpponent() {
41
return
opponent;
42
}
43
47
public
int
hostScore
, opponentScore;
48
49
public
Gamble(
Player
host,
Player
opponent) {
50
this.host = host;
51
this.opponent = opponent;
52
}
53
54
public
abstract
void
gamble();
55
56
}
com.osroyale.content.gambling.Gamble.hostScore
int hostScore
Definition
Gamble.java:47
com.osroyale.game.world.entity.mob.player.Player
Definition
Player.java:162