diff options
author | nathan <nathan@disroot.org> | 2025-07-09 08:49:54 +0000 |
---|---|---|
committer | nathan <nathan@disroot.org> | 2025-07-09 08:49:54 +0000 |
commit | d594afee3b6c55f24ecf05663b688ea488f073e6 (patch) | |
tree | 9fd0a9105e0e09520892074756a674496d0930f1 /src/utils.h | |
parent | 6bd4182fbed898ad68c6b425707bbd2c5ef1e115 (diff) | |
download | FindThings-d594afee3b6c55f24ecf05663b688ea488f073e6.tar.gz FindThings-d594afee3b6c55f24ecf05663b688ea488f073e6.tar.bz2 FindThings-d594afee3b6c55f24ecf05663b688ea488f073e6.zip |
Finally some speed and no overlap!
Diffstat (limited to 'src/utils.h')
-rw-r--r-- | src/utils.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/utils.h b/src/utils.h index 08a7420..f660b66 100644 --- a/src/utils.h +++ b/src/utils.h @@ -13,7 +13,7 @@ #ifndef UTIL_H #define UTIL_H -typedef struct Game Game; +#define FT_DEBUG_MODE #define FT_NAMEMAX 256 @@ -29,6 +29,8 @@ typedef struct Game Game; #define ALLOCATION_ERROR TraceLog(LOG_ERROR, "Allocation error in %s:%d", \ __FILE__, __LINE__); +typedef struct Game Game; + typedef enum FTError { FTERROR = -1, FTSUCCESS = 0 |