Add NMSComponent

This commit is contained in:
Flowsqy 2022-12-31 03:05:32 +01:00
parent 91a96d2f33
commit a434be49a1
2 changed files with 9 additions and 1 deletions

View File

@ -11,7 +11,8 @@ public interface FakeArmorStand extends FakeEntity {
* It sets the invisibility, the custom name, make it visible and the marker flag
*
* @param packetQueue The {@link PacketQueue} to store the packet
* @param customName The name to set
*/
void metadata(PacketQueue packetQueue);
void metadata(PacketQueue packetQueue, NMSComponent customName);
}

View File

@ -0,0 +1,7 @@
package de.epiceric.shopchest.nms;
/**
* Represent a NMS Component
*/
public class NMSComponent {
}