the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 11 lines 220 B view raw
1#pragma once 2 3#include "Item.h" 4 5class NameTagItem : public Item 6{ 7public: 8 NameTagItem(int id); 9 10 bool interactEnemy(shared_ptr<ItemInstance> itemInstance, shared_ptr<Player> player, shared_ptr<LivingEntity> target); 11};