mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2025-06-26 18:54:43 +02:00
27 lines
682 B
Java
27 lines
682 B
Java
package com.intellectualcrafters.plot.object.entity;
|
|
|
|
import java.util.Collection;
|
|
|
|
import org.bukkit.inventory.ItemStack;
|
|
import org.bukkit.potion.PotionEffect;
|
|
|
|
public class LivingEntityStats {
|
|
public boolean loot;
|
|
public String name;
|
|
public boolean visible;
|
|
public float health;
|
|
public short air;
|
|
public boolean persistent;
|
|
public boolean leashed;
|
|
public short leash_x;
|
|
public short leash_y;
|
|
public short leash_z;
|
|
public boolean equipped;
|
|
public ItemStack hands;
|
|
public ItemStack helmet;
|
|
public ItemStack boots;
|
|
public ItemStack leggings;
|
|
public ItemStack chestplate;
|
|
public Collection<PotionEffect> potions;
|
|
}
|