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 main 19 lines 499 B view raw
1#pragma once 2 3class Item; 4 5class EnchantmentCategory 6{ 7public: 8 static const EnchantmentCategory *all; 9 static const EnchantmentCategory *armor; 10 static const EnchantmentCategory *armor_feet; 11 static const EnchantmentCategory *armor_legs; 12 static const EnchantmentCategory *armor_torso; 13 static const EnchantmentCategory *armor_head; 14 static const EnchantmentCategory *weapon; 15 static const EnchantmentCategory *digger; 16 static const EnchantmentCategory *bow; 17 18 bool canEnchant(Item *item) const; 19};