isle/LEGO1/mxbool.h

10 lines
123 B
C
Raw Normal View History

2023-05-05 05:54:17 -04:00
#ifndef MXBOOL_H
#define MXBOOL_H
typedef unsigned char MxBool;
#define MX_TRUE 1
#define MX_FALSE 0
2023-05-05 05:54:17 -04:00
#endif // MXBOOL_H