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:
@@ -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);
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user