new block

This commit is contained in:
AlphaAE
2019-04-30 00:22:43 +08:00
parent eb1d2d4fbe
commit be5a27d7e3
7 changed files with 87 additions and 15 deletions

View File

@ -0,0 +1,30 @@
package com.alphaae.mcpe.servers.model;
import cn.nukkit.Player;
public class RePlayer {
private Player player;
private String title;
private int coin;
public RePlayer(Player player, String title, int coin) {
this.player = player;
this.title = title;
this.coin = coin;
}
public Player getPlayer() {
return player;
}
public String getTitle() {
return title;
}
public int getCoin() {
return coin;
}
}