the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at master 17 lines 241 B view raw
1#pragma once 2 3#define MAX_ORE_RECIPES 8 4 5class OreRecipies 6{ 7public: 8 // 4J - added for common ctor code 9 void _init(); 10 OreRecipies() {_init();} 11 12private: 13 vector <Object *> map[MAX_ORE_RECIPES]; 14 15public: 16 void addRecipes(Recipes *r); 17};