diff options
| author | ilotterytea <iltsu@alright.party> | 2025-01-26 20:06:38 +0500 |
|---|---|---|
| committer | ilotterytea <iltsu@alright.party> | 2025-01-26 20:13:37 +0500 |
| commit | d6b054ba7a53787bc9c143007176d26bc491c72b (patch) | |
| tree | e8a76d65b8f35473970f9606cf1f7aeb7ad1d2a6 /src/editor.c | |
| parent | f647ebf57d92fd638a192b7c06edc3356871dbf1 (diff) | |
fix: empty data + raygui implementation wasn't defined
Diffstat (limited to 'src/editor.c')
| -rw-r--r-- | src/editor.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/editor.c b/src/editor.c index 0bb31b2..78c3d60 100644 --- a/src/editor.c +++ b/src/editor.c @@ -5,8 +5,11 @@ #include <stdio.h> #include <stdlib.h> -#include "raygui.h" #include "raylib.h" + +#define RAYGUI_IMPLEMENTATION +#include "raygui.h" + #include "xd.h" const char *EDITOR_MAIN_TABS[] = {"Build"}; |
