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

Added wardrobe (Despawning and entity skin not functional)

This commit is contained in:
HeroBrineGoat
2022-02-02 18:28:45 -05:00
parent 39ac2713b7
commit 72f92be6f6
86 changed files with 589 additions and 544 deletions

View File

@@ -0,0 +1,15 @@
package io.github.fisher2911.nms.playerpackets;
import com.comphenix.protocol.events.PacketContainer;
import org.bukkit.Location;
import org.bukkit.entity.Player;
import java.util.UUID;
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);
}