17 lines
257 B
C
17 lines
257 B
C
#ifndef VOX_TYPEDEFS_H
|
|
#define VOX_TYPEDEFS_H
|
|
|
|
#include <stdlib.h>
|
|
#include <stdint.h>
|
|
|
|
typedef unsigned int uint;
|
|
|
|
// use for bytes arrays
|
|
typedef uint8_t ubyte;
|
|
|
|
typedef uint16_t blockid_t;
|
|
typedef uint16_t blockstate_t;
|
|
typedef uint16_t light_t;
|
|
|
|
#endif
|