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