19 lines
419 B
Java
19 lines
419 B
Java
|
package com.massivecraft.factions.event;
|
||
|
|
||
|
import com.massivecraft.factions.FPlayer;
|
||
|
import com.massivecraft.factions.Faction;
|
||
|
|
||
|
public class FactionPlayerEvent extends FactionEvent {
|
||
|
|
||
|
private final FPlayer fPlayer;
|
||
|
|
||
|
public FactionPlayerEvent(Faction faction, FPlayer fPlayer) {
|
||
|
super(faction);
|
||
|
this.fPlayer = fPlayer;
|
||
|
}
|
||
|
|
||
|
public FPlayer getfPlayer() {
|
||
|
return this.fPlayer;
|
||
|
}
|
||
|
}
|