RuneHive-Tarnish
Neural OSRS Enhancement Framework
Loading...
Searching...
No Matches
Profile.java
1
package
com.osroyale.game.world.entity.mob.player.profile;
2
3
import
com.osroyale.game.world.entity.mob.player.PlayerRight;
4
5
import
java.util.Set;
6
31
32
public
final
class
Profile {
33
34
private
final
String name;
35
36
private
final
String lastHost;
37
38
private
final
Set<String> host;
39
40
private
final
PlayerRight
rank;
41
42
public
Profile(String name, String lastHost, Set<String> host,
PlayerRight
rank) {
43
this.name = name;
44
this.lastHost = lastHost;
45
this.host = host;
46
this.rank = rank;
47
}
48
49
public
String getName() {
50
return
name;
51
}
52
53
public
String getLastHost() {
54
return
lastHost;
55
}
56
57
public
Set<String> getHost() {
58
return
host;
59
}
60
61
public
PlayerRight
getRank() {
62
return
rank;
63
}
64
65
}
com.osroyale.game.world.entity.mob.player.PlayerRight
Definition
PlayerRight.java:52