diff options
Diffstat (limited to 'render/button.h')
-rw-r--r-- | render/button.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/render/button.h b/render/button.h index b8d10b6..e4ff189 100644 --- a/render/button.h +++ b/render/button.h @@ -1,8 +1,8 @@ #ifndef BUTTON_H #define BUTTON_H -#include <SDL.h> -#include <render_text.h> +#include <SDL2/SDL.h> +#include "render_text.h" typedef struct { char txt[32]; @@ -10,7 +10,7 @@ typedef struct { float pos[2]; } button; -bool mouse_in_button (float pt[], txtd *t, button *b); +int mouse_in_button (float pt[], txtd *t, button *b); void render_button (SDL_Renderer* rend, txtd *t, button *b); #endif
\ No newline at end of file |