the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at master 11 lines 227 B view raw
1#pragma once 2 3#include "ComplexItem.h" 4 5class EmptyMapItem : public ComplexItem 6{ 7public: 8 EmptyMapItem(int id); 9 10 shared_ptr<ItemInstance> use(shared_ptr<ItemInstance> itemInstance, Level *level, shared_ptr<Player> player); 11};