14 lines
206 B
C
14 lines
206 B
C
#ifndef VOX_TYPEDEFS_H
|
|
#define VOX_TYPEDEFS_H
|
|
|
|
#include <stdlib.h>
|
|
#include <stdint.h>
|
|
|
|
typedef unsigned int uint;
|
|
typedef unsigned char ubyte;
|
|
|
|
typedef uint8_t blockid_t;
|
|
typedef uint16_t light_t;
|
|
|
|
#endif
|