mirror of
https://github.com/filoghost/HolographicDisplays.git
synced 2024-11-03 09:29:34 +01:00
Add new interfaces
This commit is contained in:
parent
85c34eef54
commit
3f551e9796
@ -1,6 +1,6 @@
|
||||
name: HolographicDisplays
|
||||
main: com.gmail.filoghost.holograms.HolographicDisplays
|
||||
version: 1.8.8
|
||||
version: 1.8.9
|
||||
|
||||
softdepend: [Multiverse-Core, MultiWorld, My Worlds, My_Worlds, ProtocolLib]
|
||||
|
||||
|
@ -0,0 +1,13 @@
|
||||
package com.gmail.filoghost.holograms.nms.interfaces;
|
||||
|
||||
import org.bukkit.entity.Entity;
|
||||
|
||||
public interface HologramArmorStand extends NameableEntityNMS {
|
||||
|
||||
// Sets the passenger of this entity through NMS.
|
||||
public void setPassengerNMS(BasicEntityNMS passenger);
|
||||
|
||||
// Sets the passenger of this entity through NMS.
|
||||
public void setPassengerNMS(Entity bukkitEntity);
|
||||
|
||||
}
|
@ -0,0 +1,9 @@
|
||||
package com.gmail.filoghost.holograms.nms.interfaces;
|
||||
|
||||
public interface NameableEntityNMS extends HologramComponent {
|
||||
|
||||
public void forceSetCustomName(String name);
|
||||
|
||||
public String getCustomNameNMS();
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user