create project structure

This commit is contained in:
2026-05-18 16:21:05 -05:00
parent 5e593720d6
commit 2d6ed0b99d
5 changed files with 124 additions and 0 deletions

13
include/LLog.h Normal file
View File

@@ -0,0 +1,13 @@
#ifndef LLog_H
#define LLog_H
enum lLogLevel {
lINFO,
lWARNING,
lERROR,
lDEBUG
};
void lLog(enum lLogLevel LOG_LEVEL, char* MESSAGE);
#endif