17 lines
207 B
C
17 lines
207 B
C
|
//
|
||
|
// Created by Иван Ильин on 13.01.2021.
|
||
|
//
|
||
|
|
||
|
#ifndef ENGINE_LOG_H
|
||
|
#define ENGINE_LOG_H
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
namespace Log
|
||
|
{
|
||
|
void log(const std::string& message);
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif //INC_3DZAVR_LOG_H
|