forked from BLOCKFANTASY/LOOHP-Limbo
17 lines
257 B
Java
17 lines
257 B
Java
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;
|
|
}
|
|
|
|
}
|