mirror of
https://github.com/BeamMP/BeamMP-Launcher.git
synced 2025-07-02 07:56:26 +00:00
14 lines
355 B
C++
14 lines
355 B
C++
///
|
|
/// Created by Anonymous275 on 4/2/2020.
|
|
///
|
|
#pragma once
|
|
#include <string>
|
|
#include <iostream>
|
|
void InitLog();
|
|
void except(const std::string& toPrint);
|
|
void fatal(const std::string& toPrint);
|
|
void debug(const std::string& toPrint);
|
|
void error(const std::string& toPrint);
|
|
void info(const std::string& toPrint);
|
|
void warn(const std::string& toPrint);
|