1
0
mirror of https://github.com/Zrips/Jobs.git synced 2025-01-21 23:51:20 +01:00
Jobs/com/gamingmesh/jobs/container/TopList.java

25 lines
443 B
Java
Raw Normal View History

2015-08-21 15:10:08 +02:00
package com.gamingmesh.jobs.container;
public final class TopList {
private int level;
private int exp;
private PlayerInfo info;
2015-08-21 15:10:08 +02:00
public TopList(PlayerInfo info, int level, int exp) {
this.info = info;
this.level = level;
this.exp = exp;
}
2015-08-21 15:10:08 +02:00
public String getPlayerName() {
return this.info.getName();
}
2015-08-21 15:10:08 +02:00
public int getLevel() {
return this.level;
}
2015-08-21 15:10:08 +02:00
public int getExp() {
return this.exp;
}
2015-08-21 15:10:08 +02:00
}