Separate engine and game

This commit is contained in:
2023-11-07 16:55:14 +01:00
parent 8a13edb838
commit 20034c96e6
922 changed files with 526 additions and 29 deletions

View File

@@ -0,0 +1,15 @@
#ifndef BREEZE_LOGGER_MODULE_H
#define BREEZE_LOGGER_MODULE_H
#include "logger.h"
#define BZ_LOGGER_MAX_CALLBACKS 32
typedef struct BzLoggerModule {
BzLoggerCallback callbacks[BZ_LOGGER_MAX_CALLBACKS];
int level;
bool silent;
} BzLoggerModule;
#endif //BREEZE_LOGGER_MODULE_H