This commit is contained in:
Jiga228
2025-10-18 16:39:43 +07:00
parent 450b3839c6
commit d79258e191
6 changed files with 23 additions and 17 deletions
+7 -4
View File
@@ -2,8 +2,11 @@
#include <string>
void Log(const char* msg);
void Log(const std::string& msg);
namespace Loging
{
void Log(const char* msg);
void Log(const std::string& msg);
void Message(const char* msg);
void Message(const std::string& msg);
void Message(const char* msg);
void Message(const std::string& msg);
}