summaryrefslogtreecommitdiff
path: root/src/utils.h
diff options
context:
space:
mode:
authorAleksey Veresov <aleksey@veresov.pro>2021-02-18 13:50:05 +0300
committerAleksey Veresov <aleksey@veresov.pro>2021-02-18 13:50:05 +0300
commit2d74b68ac770601ef9e4d621752f9229c56cb2f3 (patch)
tree26d67e680f978a830f587d68c2ff1b4c44e7b67b /src/utils.h
downloadtakethis-2d74b68ac770601ef9e4d621752f9229c56cb2f3.tar
takethis-2d74b68ac770601ef9e4d621752f9229c56cb2f3.tar.xz
takethis-2d74b68ac770601ef9e4d621752f9229c56cb2f3.zip
Initial commit.
Diffstat (limited to 'src/utils.h')
-rw-r--r--src/utils.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/utils.h b/src/utils.h
new file mode 100644
index 0000000..6b726ab
--- /dev/null
+++ b/src/utils.h
@@ -0,0 +1,11 @@
+#ifndef TAKETHIS_INCLUDED_UTILS
+#define TAKETHIS_INCLUDED_UTILS
+
+
+#include <SDL2/SDL.h>
+
+
+SDL_Texture *load_texture(SDL_Renderer *renderer, const char *path);
+
+
+#endif