1
0

feat: initialize BMapInspector project

This commit is contained in:
2026-01-30 20:23:39 +08:00
parent 6b0d73177b
commit 8dfa4bd039
8 changed files with 237 additions and 1 deletions

View File

@@ -1,4 +1,26 @@
#include "Utils.hpp"
#include <VTAll.hpp>
#include <yycc.hpp>
#include <yycc/carton/termcolor.hpp>
#include <yycc/patch/stream.hpp>
#include <iostream>
using namespace yycc::patch::stream;
namespace termcolor = yycc::carton::termcolor;
int main(int argc, char *argv[]) {
// Show splash
std::cout << termcolor::colored(u8"Ballance Map Inspector", termcolor::Color::LightYellow)
<< " (based on LibCmo " LIBCMO_VER_STR ") built at " __DATE__ " " __TIME__ << std::endl
<< u8"The inspector for checking whether your Ballance custom map can be loaded without any issues." << std::endl;
// Create reporter
BMapInspector::Utils::Reporter reporter;
// Show report
reporter.PrintConclusion();
reporter.PrintDetails();
return 0;
}