FIREFLY
This commit is contained in:
parent
a198d0d3cb
commit
aad017690e
@ -0,0 +1,20 @@
|
|||||||
|
package nautilus.game.arcade.kit.perks.data;
|
||||||
|
|
||||||
|
import java.util.HashSet;
|
||||||
|
|
||||||
|
import org.bukkit.entity.Entity;
|
||||||
|
|
||||||
|
public class FireflyData
|
||||||
|
{
|
||||||
|
public org.bukkit.entity.Player Player;
|
||||||
|
public org.bukkit.Location Location;
|
||||||
|
public long Time;
|
||||||
|
public HashSet<Entity> Targets = new HashSet<Entity>();
|
||||||
|
|
||||||
|
public FireflyData(org.bukkit.entity.Player player)
|
||||||
|
{
|
||||||
|
Player = player;
|
||||||
|
Location = player.getLocation();
|
||||||
|
Time = System.currentTimeMillis();
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user