fix: move app_t forward declaration to top

This commit is contained in:
☙◦ The Tablet ❀ GamerGirlandCo ◦❧ 2026-01-18 19:51:53 -05:00
parent 2783c5ce3b
commit 7019139979
Signed by: tablet
GPG Key ID: 924A5F6AF051E87C

View File

@ -10,6 +10,8 @@
#define APP_U64 unsigned long long #define APP_U64 unsigned long long
#endif #endif
#include "app_opengl.h" #include "app_opengl.h"
typedef struct app_t app_t;
typedef enum app_log_level_t { typedef enum app_log_level_t {
APP_LOG_LEVEL_INFO, APP_LOG_LEVEL_INFO,
APP_LOG_LEVEL_WARNING, APP_LOG_LEVEL_WARNING,
@ -642,6 +644,5 @@ struct app_t {
int pointer_y; int pointer_y;
}; };
#endif #endif
typedef struct app_t app_t;
#endif #endif