the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 13 lines 231 B view raw
1#pragma once 2using namespace std; 3 4#include "Exceptions.h" 5 6class LevelConflictException : public RuntimeException 7{ 8private: 9 static const __int32 serialVersionUID = 1L; 10 11public: 12 LevelConflictException(const wstring& msg); 13};