mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-24 20:05:39 -04:00
9203fab207
git-svn-id: svn://localhost@6 8062f311-0dae-4547-b526-b8ab9ac864a5
14 lines
218 B
C++
14 lines
218 B
C++
#ifndef LOG_H_INCLUDED
|
|
#define LOG_H_INCLUDED
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
using namespace std;
|
|
|
|
void InitLog();
|
|
void EcrireLog(string localisation, string autreinfos);
|
|
|
|
|
|
#endif // LOG_H_INCLUDED
|