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 14 lines 337 B view raw
1#pragma once 2 3#include "Enchantment.h" 4 5class LootBonusEnchantment : public Enchantment 6{ 7public: 8 LootBonusEnchantment(int id, int frequency, const EnchantmentCategory *cat); 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};