mirror of
https://github.com/isledecomp/isle.git
synced 2025-10-22 16:04:17 +00:00
10 lines
123 B
C
10 lines
123 B
C
#ifndef MXBOOL_H
|
|
#define MXBOOL_H
|
|
|
|
typedef unsigned char MxBool;
|
|
|
|
#define MX_TRUE 1
|
|
#define MX_FALSE 0
|
|
|
|
#endif // MXBOOL_H
|