the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at master 20 lines 487 B view raw
1#pragma once 2 3#include "Item.h" 4 5class ItemInstance; 6class Player; 7class Level; 8 9class FireChargeItem : public Item 10{ 11private: 12 Icon *m_dragonFireballIcon; 13public: 14 FireChargeItem(int id); 15 16 virtual bool useOn(shared_ptr<ItemInstance> itemInstance, shared_ptr<Player> player, Level *level, int x, int y, int z, int face, float clickX, float clickY, float clickZ, bool bTestUseOnOnly); 17 18 virtual Icon *getIcon(int itemAuxValue); 19 virtual void registerIcons(IconRegister *iconRegister); 20};