mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 21:40:05 +00:00
20 lines
307 B
C++
20 lines
307 B
C++
#pragma once
|
|
|
|
#include <memory>
|
|
#include <string>
|
|
|
|
#include <spdlog/logger.h>
|
|
|
|
namespace scwx
|
|
{
|
|
namespace util
|
|
{
|
|
namespace Logger
|
|
{
|
|
|
|
void Initialize();
|
|
std::shared_ptr<spdlog::logger> Create(const std::string& name);
|
|
|
|
} // namespace Logger
|
|
} // namespace util
|
|
} // namespace scwx
|