Skip to content

Instantly share code, notes, and snippets.

View IllusionTheDev's full-sized avatar
💥

ImIllusion IllusionTheDev

💥
View GitHub Profile
public class ClientsideItem extends ClientsideEntity {
private final ClientsideHologram hitbox;
private final List<PacketContainer> packets = new ArrayList<>();
public ClientsideItem(Location location, ItemStack item) {
hitbox = new ClientsideHologram(location, "", true);
setup(item, location);
}