Separate engine and game
This commit is contained in:
15
engine/breeze/core/logger_module.h
Normal file
15
engine/breeze/core/logger_module.h
Normal 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
|
||||
Reference in New Issue
Block a user