the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at master 15 lines 364 B view raw
1#pragma once 2 3#include "Enchantment.h" 4 5class UntouchingEnchantment : public Enchantment 6{ 7public: 8 UntouchingEnchantment(int id, int frequency); 9 10 virtual int getMinCost(int level); 11 virtual int getMaxCost(int level); 12 virtual int getMaxLevel(); 13 virtual bool isCompatibleWith(Enchantment *other) const; 14 virtual bool canEnchant(shared_ptr<ItemInstance> item); 15};