Files
UwU-Engine/Core/Log/Log.hpp
T

9 lines
163 B
C++

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