Files
UwU-Engine/Core/Log/Log.hpp
T
2025-10-18 16:39:43 +07:00

13 lines
201 B
C++

#pragma once
#include <string>
namespace Loging
{
void Log(const char* msg);
void Log(const std::string& msg);
void Message(const char* msg);
void Message(const std::string& msg);
}