Files
LegacyMultiplayerProject/Minecraft.World/EnderpearlItem.h
DrPerkyLegit 5b19646cc6 init
2026-06-23 01:27:12 -04:00

13 lines
298 B
C++

#pragma once
#include "Item.h"
class EnderpearlItem : public Item
{
public:
EnderpearlItem(int id);
virtual shared_ptr<ItemInstance> use(shared_ptr<ItemInstance> instance, Level *level, shared_ptr<Player> player);
// 4J added
virtual bool TestUse(Level *level, shared_ptr<Player> player);
};