9
0
mirror of https://github.com/HibiscusMC/HMCCosmetics.git synced 2025-12-30 12:29:16 +00:00

Added skin overlay on wardrobe

This commit is contained in:
Fisher2911
2022-02-16 23:51:01 -05:00
parent f58d328bae
commit 832980f593
12 changed files with 84 additions and 3 deletions

View File

@@ -1,6 +1,8 @@
package io.github.fisher2911.nms;
import com.comphenix.protocol.PacketType;
import com.comphenix.protocol.events.PacketContainer;
import com.comphenix.protocol.wrappers.WrappedDataWatcher;
import org.bukkit.Location;
import org.bukkit.entity.Player;
@@ -11,5 +13,6 @@ public interface PlayerPackets {
PacketContainer getSpawnPacket(final Location location, UUID uuid, final int entityId);
PacketContainer getPlayerInfoPacket(final Player player, final UUID uuid);
PacketContainer getRemovePacket(final Player player, final UUID uuid, final int entityId);
PacketContainer getOverlayPacket(final int entityId);
}