wut/include/wut_types.h
2016-01-07 12:07:13 +00:00

13 lines
126 B
C

#pragma once
#include <stdint.h>
typedef int BOOL;
#ifndef TRUE
#define TRUE 1
#endif
#ifndef FALSE
#define FALSE 0
#endif