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

27 lines
810 B
Java
Raw Normal View History

2016-04-14 16:24:03 +00:00
package me.mrCookieSlime.Slimefun.holograms;
import org.bukkit.Location;
import org.bukkit.entity.ArmorStand;
import org.bukkit.inventory.ItemStack;
import org.bukkit.util.EulerAngle;
2017-06-14 10:35:25 +00:00
@Deprecated
2016-04-14 16:24:03 +00:00
public class ArmorStandFactory {
2016-11-20 13:47:46 +00:00
2017-06-13 17:28:54 +00:00
@Deprecated
2016-04-14 16:24:03 +00:00
public static ArmorStand createHidden(Location l) {
2017-06-13 17:28:54 +00:00
return me.mrCookieSlime.CSCoreLibPlugin.general.World.ArmorStandFactory.createHidden(l);
2016-04-14 16:24:03 +00:00
}
2016-11-20 13:47:46 +00:00
2017-06-13 17:28:54 +00:00
@Deprecated
2016-04-14 16:24:03 +00:00
public static ArmorStand createSmall(Location l, ItemStack item, EulerAngle arm, float yaw) {
2017-06-13 17:28:54 +00:00
return me.mrCookieSlime.CSCoreLibPlugin.general.World.ArmorStandFactory.createSmall(l, item, arm, yaw);
2016-04-14 16:24:03 +00:00
}
2016-11-20 13:47:46 +00:00
2017-06-13 17:28:54 +00:00
@Deprecated
2016-04-14 16:24:03 +00:00
public static ArmorStand createSmall(Location l, ItemStack head, float yaw) {
2017-06-13 17:28:54 +00:00
return me.mrCookieSlime.CSCoreLibPlugin.general.World.ArmorStandFactory.createSmall(l, head, yaw);
2016-04-14 16:24:03 +00:00
}
}