RuneHive-Game
Loading...
Searching...
No Matches
Profile.java
Go to the documentation of this file.
1package com.runehive.game.world.entity.mob.player.profile;
2
3import com.runehive.game.world.entity.mob.player.PlayerRight;
4
5import java.util.Set;
6
7public final class Profile {
8
9 private final String name;
10
11 private final String lastHost;
12
13 private final Set<String> host;
14
15 private final PlayerRight rank;
16
17 public Profile(String name, String lastHost, Set<String> host, PlayerRight rank) {
18 this.name = name;
19 this.lastHost = lastHost;
20 this.host = host;
21 this.rank = rank;
22 }
23
24 public String getName() {
25 return name;
26 }
27
28 public String getLastHost() {
29 return lastHost;
30 }
31
32 public Set<String> getHost() {
33 return host;
34 }
35
37 return rank;
38 }
39
40}
Profile(String name, String lastHost, Set< String > host, PlayerRight rank)
Definition Profile.java:17