RuneHive-Tarnish
Neural OSRS Enhancement Framework
Loading...
Searching...
No Matches
Gamble.java
1package com.osroyale.content.gambling;
2
3import com.osroyale.game.world.entity.mob.player.Player;
4
28
29public 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}