File IntTypes.h
File List > engine > include > IntTypes.h
Go to the documentation of this file
#ifndef INT_TYPES_H
#define INT_TYPES_H
#include <stdint.h>
typedef uint8_t u8;
typedef int8_t i8;
typedef uint16_t u16;
typedef int16_t i16;
typedef uint32_t u32;
typedef int32_t i32;
typedef uint64_t u64;
typedef int64_t i64;
typedef u16 TileIndex;
typedef u32 VertIndexT;
#endif