mirror of
https://github.com/TTimo/GtkRadiant.git
synced 2025-01-10 20:10:56 +00:00
12 lines
289 B
C
12 lines
289 B
C
|
#ifndef __BYTEBOOL__
|
||
|
#define __BYTEBOOL__
|
||
|
|
||
|
// defines boolean and byte types usable in both c and c++ code
|
||
|
// this header is not really meant for direct inclusion,
|
||
|
// it is used by mathlib and cmdlib
|
||
|
|
||
|
typedef enum { qfalse, qtrue } qboolean;
|
||
|
typedef unsigned char byte;
|
||
|
|
||
|
#endif
|