#ifndef NOCOMPAT # define COMPAT_NO_MOD_IS_XONOTIC #endif #ifndef QCC_SUPPORT_INT #define int float #define stoi(s) stof(s) #define itos(s) ftos(s) #endif #ifndef QCC_SUPPORT_BOOL #define bool float // Boolean Constants const bool true = 1; const bool false = 0; const bool TRUE = 1; const bool FALSE = 0; #endif