From 2aae6dcb8e4ab7261f4449e99b7724e665db3e3b Mon Sep 17 00:00:00 2001 From: nathan Date: Mon, 28 Jul 2025 19:18:25 -0600 Subject: Cant focus lmao --- src/utils.h | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'src/utils.h') diff --git a/src/utils.h b/src/utils.h index 6532660..63785eb 100644 --- a/src/utils.h +++ b/src/utils.h @@ -37,15 +37,6 @@ #define GLSL_VERSION 100 #endif -// Typedef hackery. -typedef struct Game Game; -typedef struct World World; - -typedef enum FTError { - FTERROR = -1, - FTSUCCESS = 0 -} FTError; - // Bit shit. #define SET_BIT(b, n) (b | (0x1 << n)) #define CLEAR_BIT(b, n) (b & ~(0x1 << n)) @@ -61,4 +52,13 @@ typedef enum FTError { #define PRINT_VECTOR2(v) printf("%f %f\n", v.x, v.y) #define PRINT_VECTOR3(v) printf("%f %f %f\n", v.x, v.y, v.z) +// Typedef hackery. +typedef struct Game Game; +typedef struct World World; + +typedef enum FTError { + FTERROR = -1, + FTSUCCESS = 0 +} FTError; + #endif -- cgit v1.2.3