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 13 lines 255 B view raw
1#pragma once 2 3#include "Enchantment.h" 4 5class ArrowInfiniteEnchantment : public Enchantment 6{ 7public: 8 ArrowInfiniteEnchantment(int id, int frequency); 9 10 virtual int getMinCost(int level); 11 virtual int getMaxCost(int level); 12 virtual int getMaxLevel(); 13};