feat: 添加管理 数据 监听

Signed-off-by: 502647092 <admin@yumc.pw>
merge/1/MERGE
502647092 2016-06-24 18:35:27 +08:00
parent 8f02e902f0
commit 616163cd7d
3 changed files with 43 additions and 0 deletions

View File

@ -0,0 +1,20 @@
package pw.yumc.MiaoBoard.listener;
import org.bukkit.event.Listener;
import org.bukkit.event.player.PlayerJoinEvent;
import org.bukkit.event.player.PlayerQuitEvent;
/**
*
* @since 2016624 3:29:39
* @author
*/
public class PlayerListener implements Listener {
public void onPlayerJoin(final PlayerJoinEvent e) {
}
public void onPlayerQuit(final PlayerQuitEvent e) {
}
}

View File

@ -0,0 +1,13 @@
package pw.yumc.MiaoBoard.scoreboard;
import java.util.LinkedList;
/**
*
* @since 2016624 3:38:08
* @author
*/
public class ScoreBoardData {
private String head;
private final LinkedList<String> lines = new LinkedList<>();
}

View File

@ -0,0 +1,10 @@
package pw.yumc.MiaoBoard.scoreboard;
/**
*
* @since 2016624 3:31:31
* @author
*/
public class ScoreBoardManager {
}