aboutsummaryrefslogtreecommitdiff
path: root/src/sdlw.h.old
diff options
context:
space:
mode:
authoramy <[email protected]>2023-05-03 12:42:12 +0000
committeramy <[email protected]>2023-05-03 12:42:12 +0000
commitd3c131db7b22e916d0b5aaa097ca8750a4063e93 (patch)
tree34e03468f6140f5aaf2dd8cf650f3d815e42fade /src/sdlw.h.old
parent5beb66fd85d7a4ccaa8ce7c22662afe1932cb8d7 (diff)
cleaning stuff
Diffstat (limited to 'src/sdlw.h.old')
-rw-r--r--src/sdlw.h.old13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/sdlw.h.old b/src/sdlw.h.old
deleted file mode 100644
index 7648d93..0000000
--- a/src/sdlw.h.old
+++ /dev/null
@@ -1,13 +0,0 @@
-#include <SDL2/SDL.h>
-#include <stdio.h>
-#include <stdlib.h>
-#include "util.h"
-typedef struct {
- SDL_Window* w;
- SDL_Renderer* r;
-} bw;
-#define sdl_clear(r) SDL_SetRenderDrawColor(r,0,0,0,0);\
- SDL_RenderClear(r);
-bw sdl_init();
-void sdl_loop(bw);
-void sdl_circle(bw w,int x, int y, int r);