Nexus Engine  v0.0.1
Loading...
Searching...
No Matches
Utils.hpp
Go to the documentation of this file.
1// SPDX-License-Identifier: MIT
2
3#pragma once
4
5#include <string>
6
7namespace Nexus {
8 bool EnableAnsiColors();
9 std::string ANSI(int code, bool bold = false);
10 std::string ANSI_RGB(int r, int g, int b, bool bold = false);
11} // namespace Nexus
Definition Config.cppm:11
std::string ANSI_RGB(int r, int g, int b, bool bold)
Definition Utils.cpp:34
std::string ANSI(int code, bool bold)
Definition Utils.cpp:30
bool EnableAnsiColors()
Definition Utils.cpp:15