Anonymous275 dd3d1494c6 edits
2023-12-02 14:53:54 +00:00

17 lines
340 B
C++

///
/// Created by Anonymous275 on 12/26/21
/// Copyright (c) 2021-present Anonymous275 read the LICENSE file for more info.
///
#pragma once
#include <easylogging++.h>
#undef min
#undef max
class Log {
public:
static void Init();
static void ConsoleOutput(bool enable);
private:
static inline el::Configurations Conf{};
};