re project

This commit is contained in:
AlphaAE
2019-04-29 09:48:31 +08:00
parent 34d49e985d
commit 6c307f1197
13 changed files with 328 additions and 180 deletions

View File

@ -0,0 +1,10 @@
package com.alphaae.mcpe.servers.event.block.joinquit;
import cn.nukkit.event.player.PlayerJoinEvent;
import cn.nukkit.event.player.PlayerQuitEvent;
public interface JoinQuitEventBlock {
void onPlayerJoin(PlayerJoinEvent event);
void onPlayerQuit(PlayerQuitEvent event);
}