mirror of
https://github.com/BeamMP/BeamMP-Launcher.git
synced 2025-07-03 08:26:01 +00:00
17 lines
358 B
C++
17 lines
358 B
C++
///
|
|
/// Created by Anonymous275 on 12/26/21
|
|
/// Copyright (c) 2021-present Anonymous275 read the LICENSE file for more info.
|
|
///
|
|
|
|
#pragma once
|
|
#include <easyloggingpp/src/easylogging++.h>
|
|
#undef min
|
|
#undef max
|
|
class Log {
|
|
public:
|
|
static void Init();
|
|
static void ConsoleOutput(bool enable);
|
|
private:
|
|
static inline el::Configurations Conf{};
|
|
};
|