RuneHive-Tarnish
Neural OSRS Enhancement Framework
Loading...
Searching...
No Matches
Profile.java
1package com.osroyale.game.world.entity.mob.player.profile;
2
3import com.osroyale.game.world.entity.mob.player.PlayerRight;
4
5import java.util.Set;
6
31
32public 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}