vectozavr-shooter/engine/utils/Log.h

16 lines
207 B
C
Raw Normal View History

2021-09-13 15:53:43 +03:00
//
// Created by Иван Ильин on 13.01.2021.
//
#ifndef ENGINE_LOG_H
#define ENGINE_LOG_H
#include <string>
2021-10-31 11:39:08 +03:00
namespace Log {
void log(const std::string &message);
2021-09-13 15:53:43 +03:00
};
#endif //INC_3DZAVR_LOG_H