assaultfish/engine/include/GearSrc/Log.h
2026-01-25 13:35:09 +09:00

24 lines
334 B
C

#ifndef __GEARSRC_LOG_H__
#define __GEARSRC_LOG_H__
#include <GearSrc/MachDep.h>
#include <GearSrc/TypeDefs.h>
#ifdef __cplusplus
extern "C" {
#endif
enum GSLogLevel {
GSLogInfo = 0,
GSLogWarn,
GSLogError,
GSLogDebug
};
GSDECL void GSLog(GSEngine engine, int level, const char* fmt, ...);
#ifdef __cplusplus
}
#endif
#endif