assaultfish/engine/include/GearSrc/Log.h
2026-01-12 01:55:20 +09:00

23 lines
304 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
};
GSDECL void GSLog(int level, const char* fmt, ...);
#ifdef __cplusplus
}
#endif
#endif