1
mirror of https://github.com/StarWishsama/Slimefun4.git synced 2024-09-20 19:55:48 +00:00
Slimefun4/src/me/mrCookieSlime/Slimefun/holograms/ArmorStandFactory.java
2017-06-14 12:35:25 +02:00

27 lines
810 B
Java

package me.mrCookieSlime.Slimefun.holograms;
import org.bukkit.Location;
import org.bukkit.entity.ArmorStand;
import org.bukkit.inventory.ItemStack;
import org.bukkit.util.EulerAngle;
@Deprecated
public class ArmorStandFactory {
@Deprecated
public static ArmorStand createHidden(Location l) {
return me.mrCookieSlime.CSCoreLibPlugin.general.World.ArmorStandFactory.createHidden(l);
}
@Deprecated
public static ArmorStand createSmall(Location l, ItemStack item, EulerAngle arm, float yaw) {
return me.mrCookieSlime.CSCoreLibPlugin.general.World.ArmorStandFactory.createSmall(l, item, arm, yaw);
}
@Deprecated
public static ArmorStand createSmall(Location l, ItemStack head, float yaw) {
return me.mrCookieSlime.CSCoreLibPlugin.general.World.ArmorStandFactory.createSmall(l, head, yaw);
}
}