the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at master 36 lines 1.4 kB view raw
1//Copyright (c) 2006-2008 Emil Dotchevski and Reverge Studios, Inc. 2 3//Distributed under the Boost Software License, Version 1.0. (See accompanying 4//file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 5 6#ifndef UUID_316FDA946C0D11DEA9CBAE5255D89593 7#define UUID_316FDA946C0D11DEA9CBAE5255D89593 8#if defined(__GNUC__) && !defined(BOOST_EXCEPTION_ENABLE_WARNINGS) 9#pragma GCC system_header 10#endif 11#if defined(_MSC_VER) && !defined(BOOST_EXCEPTION_ENABLE_WARNINGS) 12#pragma warning(push,1) 13#endif 14 15#include <boost/exception/diagnostic_information.hpp> 16#include <boost/exception/error_info.hpp> 17#include <boost/exception/exception.hpp> 18#include <boost/exception/get_error_info.hpp> 19#include <boost/exception/info.hpp> 20#include <boost/exception/info_tuple.hpp> 21#include <boost/exception/errinfo_api_function.hpp> 22#include <boost/exception/errinfo_at_line.hpp> 23#include <boost/exception/errinfo_errno.hpp> 24#include <boost/exception/errinfo_file_handle.hpp> 25#include <boost/exception/errinfo_file_name.hpp> 26#include <boost/exception/errinfo_file_open_mode.hpp> 27#include <boost/exception/errinfo_type_info_name.hpp> 28#ifndef BOOST_NO_EXCEPTIONS 29#include <boost/exception/errinfo_nested_exception.hpp> 30#include <boost/exception_ptr.hpp> 31#endif 32 33#if defined(_MSC_VER) && !defined(BOOST_EXCEPTION_ENABLE_WARNINGS) 34#pragma warning(pop) 35#endif 36#endif