mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
* Add new SDK launch logo. * Remove ansi-color coding from in-game console and file loggers. * Improve console colors for Windows. * Implement various string utilities. * Implement various terminal utilities.
22 lines
666 B
C++
22 lines
666 B
C++
#pragma once
|
|
|
|
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
|
|
// Windows Header Files
|
|
#include <windows.h>
|
|
|
|
__declspec(dllexport) void DummyExport()
|
|
{
|
|
// Required for detours.
|
|
}
|
|
|
|
const std::string R5R_LOGO[] =
|
|
{
|
|
R"(+---------------------------------------------+)",
|
|
R"(| ___ ___ ___ _ _ _ |)",
|
|
R"(| | _ \ __| _ \___| |___ __ _ __| |___ __| | |)",
|
|
R"(| | /__ \ / -_) / _ \/ _` / _` / -_) _` | |)",
|
|
R"(| |_|_\___/_|_\___|_\___/\__,_\__,_\___\__,_| |)",
|
|
R"(| |)",
|
|
R"(+---------------------------------------------+)"
|
|
};
|