the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 10 lines 173 B view raw
1#pragma once 2 3class Difficulty 4{ 5public: 6 static const int PEACEFUL = 0; 7 static const int EASY = 1; 8 static const int NORMAL = 2; 9 static const int HARD = 3; 10};