Added Events, Commands and Plugins

This commit is contained in:
LOOHP
2020-08-07 22:26:00 +08:00
parent 94bb1e4e45
commit 3c85ef439f
29 changed files with 965 additions and 168 deletions
@@ -0,0 +1,16 @@
package com.loohp.limbo.Events;
import com.loohp.limbo.Player.Player;
public class PlayerJoinEvent extends PlayerEvent {
public PlayerJoinEvent(Player player) {
this.player = player;
}
@Override
public Player getPlayer() {
return player;
}
}