mirror of
https://github.com/TTimo/GtkRadiant.git
synced 2025-01-10 12:01:10 +00:00
11 lines
278 B
C
11 lines
278 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
|