mirror of
https://github.com/BeamMP/BeamMP-Server.git
synced 2025-07-01 15:26:59 +00:00
14 lines
356 B
C++
14 lines
356 B
C++
///
|
|
/// Created by Anonymous275 on 4/2/2020.
|
|
///
|
|
#pragma once
|
|
#include <string>
|
|
#include <iostream>
|
|
void InitLog();
|
|
void ConsoleOut(const std::string& msg);
|
|
void except(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);
|