diff options
author | jacopo grandi <jak.sk8@hotmail.it> | 2021-03-02 09:44:19 +0100 |
---|---|---|
committer | jacopo grandi <jak.sk8@hotmail.it> | 2021-03-02 09:44:19 +0100 |
commit | 879fb2adefadbc5f38711cd8f01bcc4cee053e3d (patch) | |
tree | 63d9841f0dd321978714dd5839cb6f8c3c8df57e /render/button.h | |
parent | 2f345b1d6e130177efe4fa47d5b2bd11f352ce85 (diff) |
i hate cmake, g++, ld, collect2, cc1, x86_64-w64-mingw32
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 |