the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 18 lines 327 B view raw
1#pragma once 2using namespace std; 3 4#include "Item.h" 5 6class Player; 7class Packet; 8class Level; 9 10class ComplexItem : public Item 11{ 12protected: 13 ComplexItem(int id); 14 15public: 16 virtual bool isComplex(); 17 virtual shared_ptr<Packet> getUpdatePacket(shared_ptr<ItemInstance> itemInstance, Level *level, shared_ptr<Player> player); 18};