anton_render/src/base/base_core.h
2025-05-14 13:30:49 +02:00

20 lines
276 B
C

#ifndef BASE_CORE_H
#define BASE_CORE_H
#include <stdint.h>
typedef int32_t S32;
typedef uint32_t U32;
typedef int64_t S64;
typedef uint64_t U64;
typedef float F32;
typedef double F64;
#define global static
#define function static
#endif /* BASE_CORE_H */